ie4 = ((navigator.appName == 'Microsoft Internet Explorer') && (!(op)))? true:false;
	var myHTML;
	var myTitle;
	var flag=false;;
	if(ie4)
	{
		
		window.onbeforeprint=clearHTM;
		window.onafterprint=fullHTM;
	}
	
	function clearHTM()
	{
		myHTML = document.body.innerHTML;
		myTitle = document.title;
		if(document.all.content && !flag)
		{
			flag=true;
			document.body.innerHTML = document.all.content.innerHTML;
			
		}
		
		document.title="MemoCam&reg; &nbsp;&nbsp; Тел.: +7 (095) 105-0517, &nbsp;&nbsp; E-mail:info@memocam.ru";
		
	}
	
	function fullHTM()
	{
		if(flag)
		{
					document.body.innerHTML = myHTML;
					flag=false;
		}
		
		document.title = myTitle;
	}
