var gAutoPrint = true; // Call print function

function Print_page()
{
	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 >\n<br>\n<blockquote>\n';
		
		var printReadyElem = document.getElementById("Artical");
		
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("There is nothing to Print");
			return;
		}
			
		html += '\n</blockquote>\n</BO' + 'DY>\n</HT' + 'ML>';
		html ='<div align=center><table border=0 cellspacing=0 cellpadding=0 width=598 dir=rtl>'+html+'</div></table>';
		html =html.replace('<IMG height=27 src="images/video.jpg" width=122 border=0>','') ;
		html =html.replace('<IMG height=27 src="images/croky.jpg" width=122 border=0>','') ;
		html =html.replace('<IMG height=27 src="images/images.jpg" width=122 border=0>','') ;
		html =html.replace('<img border=0 src="images/video.jpg" width=122 height=27>','') ;
		html =html.replace('<img border=0 src="images/video.jpg" width=122 height=27>','') ;
		
		var printWin = window.open("","Wajaha");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Your Browser Doesn't Support This Feature");
	}
}
