function printPage(VirDir)
{
		document.body.style.cursor = "wait";
		win = window.open("","_blank","height=500,width=620,top=50,left=50,status=no,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes");
		var doc = win.document;
		doc.open();		
		doc.defaultCharset=document.defaultCharset;
		doc.charset=document.charset
		doc.writeln('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">');
        doc.write('<link href="' + VirDir + '/include/styles.css" rel="stylesheet" type="text/css"></head>')
        doc.writeln("<body onload=\"window.print();\" class='page' style='margin: 15px'>")
        doc.writeln("<table width='100%' align='center' cellpadding='2' cellspacing='0'><tr><td align='left' class='page_title'>Agricultural Research Organization (ARO) - Volcani Center</td></tr>")
        doc.writeln('<tr><td width="100%" align="left"><span style="font-family: Verdana; font-size: 9pt"><font color="#9A6B0C">State of Israel / Ministry of Agriculture and Rural Development</font></span></td></tr>')
        doc.writeln("<tr><td height='5' width='100%' nowrap></td></tr><tr><td height='1' width='100%' bgcolor='#657D94' nowrap></td></tr><tr><td height='10' width='100%' nowrap></td></tr></table>");
		doc.write(document.getElementById("divforprint").innerHTML);
		doc.write("</body></html>");
		doc.close();
		document.body.style.cursor = "default";
}

function printPageHeb(VirDir)
{
		document.body.style.cursor = "wait";
		win = window.open("","_blank","height=500,width=620,top=50,left=50,status=no,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes");
		var doc = win.document;
		doc.open();
		doc.defaultCharset=document.defaultCharset;
		doc.charset=document.charset
		doc.writeln('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">');
        doc.write("<link href=\"" + VirDir + "/include/styles.css\" rel=\"stylesheet\" type=\"text/css\"></head>")
        doc.writeln("<body onload=\"window.print();\" class='page' style='margin: 15px'>")
        doc.writeln("<table width='100%' align='center' cellpadding='0' cellspacing='0'><tr><td align='right' class='page_title'>מינהל המחקר החקלאי - מרכז וולקני</td></tr>")
        doc.writeln('<tr><td width="100%" align="right"><span style="font-family: Verdana; font-size: 9pt"><font color="#9A6B0C">מדינת ישראל / משרד החקלאות ופיתוח הכפר</font></span></td></tr>')
        doc.writeln("<tr><td height='5' width='100%' nowrap></td></tr><tr><td height='1' width='100%' bgcolor='#657D94' nowrap></td></tr><tr><td height='10' width='100%' nowrap></td></tr></table>");
		doc.write(document.getElementById("divforprint").innerHTML);
		doc.write("</body></html>");
		doc.close();
		document.body.style.cursor = "default";
}

function sendtofriend(strUrl)
{			
	h = 240;
	w = 480;
	l = parseInt((window.screen.availWidth - w) / 2);
	
	window.open(strUrl,"sendtofriend","width=" + w +",height="+ h +",toolbar=no,menubar=no,left=" + l +", top=150,titlebar=no, scrollbars=no,menubar=no");
}
