/* Print Version */

function pprint(elmId)
{
	if (!elmId) {
		elmId = "print_version";
	}
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n';

		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		
		html += '\n</HE' + 'AD>\n<BODY style=\"background-color:#FFFFFF; margin:20px;\"><table cellpadding=\"0\" cellspacing=\"0\" width=\"567\" align=\"center\"><tr><td dir=\"rtl\"><img src=\"gfx/logo_print.gif\" /><hr style=\"height:1px; margin-top:10px; color:#20416C;\" />\n';
		
		var print_versionElem = document.getElementById(elmId);
		
		if (print_versionElem != null)
		{
				html += print_versionElem.innerHTML;
		}
		else
		{
			alert("Could not find the print_version section in the HTML");
			return;
		}
			
		html += '\n<hr style=\"height:1px; margin-top:20px; color:#20416C;\" /><strong>Fruition Ltd.</strong><br /> - תובל 30, מתחם הבורסה רמת גן, 52522, טלפון: 03-5615123, פקס: 03-5615129<td><tr></table></BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
//		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}

/* Set Home page */

function Set_Homepage()
{
	if(navigator.appVersion.charAt(navigator.appVersion.indexOf("MSIE") + 5) >= 5 && navigator.platform.indexOf("Win16") == -1 && navigator.platform.indexOf("Mac") == -1)
	{
		if (window.external)
		homepage.style.behavior='url(#default#homepage)';
		homepage.setHomePage("http://www.fruition.co.il");
	}
}