// Contains misc. javascript functions

	function LoadPopup(URL, w, h) 
	{
		var popupWindow;
		popupWindow = window.open(URL,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=' + parseInt(w)+ ",height=" + parseInt(h));
		popupWindow.focus();
	}
	
	
	function LoadLinkPopup(URL) 
	{
		var popupWindow;
		popupWindow = window.open(URL,'popupWindow','toolbar=yes,location=yes,directories=no,status=no,menubar=yes,resizable=yes,scrollbars=yes,width=780,height=620');
		popupWindow.focus();
	}


