﻿var gAutoPrint = true;
// Flag for whether or not to automatically call the print function
function PrintPage(lang)
{
if (document.getElementById != null)
{
var html = '<HTML>\n<HEAD>\n';
html += '<link href=\"/styles/main_'+lang+'.css\" rel=\"stylesheet\" type=\"text/css\">'
html += '\n</HE' + 'AD>\n<BODY style=background-image:none>\n';
html += '<table width=\"575\"  border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align="\center\">'
html +='<td><img src=\"/images/'+lang+'/header.jpg\"></td>'
if(lang=="arabic")
html +='</tr><tr><td align=\"right\"><br />\n';
else
html +='</tr><tr><td align=\"left\"><br />\n';

var printReadyElem = document.getElementById("PrintPart");
//alert(document.getElementById("Content").innerHTML);
if (printReadyElem != null)
{
html += printReadyElem.innerHTML;
}
else
{
	if(lang=="arabic")
		alert("عفوا الجزء المراد طباعته غير موجود");
	else
		alert("Could not find the print ready section in the HTML");
	return;
}
html += '</td></tr><tr><td align="\center\" class="\content_gray\">';
html += '';

if(lang=="arabic")
html += '<font class=\"content\">جميع الحقوق محفوظة لوزارة الدولة للتنمية الإدارية</font></p>';
else
html += '<font class=\"content\">All Rights Reserved, Ministry of State for Administrative Development</font></p>';
html += '</td></tr></table>\n';
if(lang=="arabic")
html += '<p align=right>&nbsp;<a href=\"javascript:window.close();\">إغلاق</a>&nbsp;</p>'
else
html += '<p align=left>&nbsp;<a href=\"javascript:window.close();\">Close this window</a>&nbsp;</p>'
html += '\n</BO' + 'DY>\n</HT' + 'ML>';

var printWin = window.open('','','toolbar=0,location=0,directories=0,status=1,menubar=no,scrollbars=yes,resizable=no,width=778,height=550');
 printWin.document.write(html);
printWin.document.close();
if (gAutoPrint)
printWin.print();
}
else
{
alert("Sorry, the print ready feature is only available in modern browsers.");
}
}



function Send(url)
{
	window.open("/includes/send_friend.aspx?url="+url, "flag", "toolbar=0,location=0,directories=0,status=1,menubar=no,scrollbars=no,resizable=no,width=460,height=230");
}



