// Open a new window to show images and be able to specify the window width and height
function open_LinkedWindow(link,width,height) 
{
	var link,width,height;
	window.open( link, "MyWindowName", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no,"+width+","+height)
}

// Show disclaimers for various pages. To show disclaimer add 
// <A href="javascript:show_Disclaimer('Hurrah, this is my Disclaimer!!!')"></A> to HTML.
function show_Disclaimer(disclaimer)
{
	var disclaimer;
	alert(disclaimer, information);
}

function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=837,height=500,left=100,top=100');");
}