// JavaScript Document
function SwapOut(id, imageURL)
{
	var img = document.getElementById(id)
	img.src = imageURL;

	return true;
}

var newwindow

function popitup(url , title) 
{
	if (newwindow && !newwindow.closed)
	{ 
		newwindow.focus(); newwindow.document.clear() 
	}
	else
	{ 
		newwindow=window.open('','','width=500,height=400,resizable=1') 
	}
	newwindow.document.writeln('<> <head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"black\"> <center>');
	newwindow.document.writeln('<img src=\"' + url + '\"' + ' alt=\"' + title + '\" >');
	newwindow.document.writeln('<\/center> <\/body> <\/html>');
	newwindow.document.close();
}

function tidy()
{
	if (newwindow && !newwindow.closed) 
	{ 	
		newwindow.close(); 
	}
}
