
	/**
	 * Opens content in a popup window
	 */
 	function printwnd(url)
	{
		window.open(url, 'printview', 'width=720,height=550,status=0,toolbar=1,resizable=0,scrollbars=1,location=1,menubar=1,directories=1');
	}


	/**
	 * Print email link (protection from spambots)
	 * If javascript is disabled, nothing is visible
	 * 
	 * @param string p1 Part 1 - this is username
	 * @param string p2 Part 2 - this is domain
	 * @param string p3 Part 3 - this is TLD
	 */

	function writemail(p1, p2, p3)
	{
		document.write("<a href='mailto:"+p1+"@"+p2+"."+p3+"'>"+p1+"@"+p2+"."+p3+"</a>");
	}
