function CheckIsIE()
{
	if (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER')
	{
		return true;
	}
	else
	{
		return false; 
	}
}

function PrintThisPage()
{
	if (CheckIsIE() == true)
	{
		document.Content.focus();
		document.Content.print();
	}
	else
	{
		window.frames['Content'].focus();
		window.frames['Content'].print();
	} 
}
