


	function popitup(url,newsid)
	{
		var querystring = url + '?NewsID=' + newsid;
		newwindow=window.open(querystring,'name','height=300,width=400');
		if (window.focus) {newwindow.focus()} ;
		return false;
	}

	function printpage(url,newsid)
	{
		var querystring = url + '?newsid=' + newsid;
		newwindow=window.open(querystring,'name','height=300,width=600,resizable=yes,scrollbars=yes,menubar=no,status=yes');
		if (window.focus) {newwindow.focus()} ;
		return false;
	}

	function popupPDF(url)
	{
		var querystring = url;
		newwindow=window.open(querystring,'PDF','height=300,width=600,resizable=yes,scrollbars=yes,menubar=no,status=yes');
		if (window.focus) {newwindow.focus()} ;
		return false;
	}


	function displayBannerWindow(url, title, width, height) 
	{
		window.open(url,title,'width=' + width + ',height=' + height + ',resizable=no,scrollbars=yes,menubar=no,status=no');
	}
	function displayWindow(url, title, width, height) 
	{
		window.open(url,title,'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no');
	}

