// JavaScript Document

	function popupwindow(pagename,WindowWidth,WindowHeight) 
	{
		locationwindow = "toobar=no, titlebar=no, menubar=no, titlebar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no, copyhistory=no,width="+WindowWidth+",height="+WindowHeight+""
		window.open (""+ pagename +"", "NewWin", locationwindow);
	}