/*
	Title: Close WIndow
*/
function closeWindow()
	{
		window.close();
	}
	
/*
	Pops open window with image in it
*/
function open_window(url,specs) 
	{
		mywin = window.open(url,"win",specs);
		mywin.focus();
	}
	
/*
	This will print the page
*/
function printpage() 
	{
	window.print();  
	} 