//<!-- Original:  CodeLifter.com (support@codelifter.com) -->
//<!-- Web Site:  http://www.codelifter.com -->

//<!-- This script and many more are available free online at -->
//<!-- The JavaScript Source!! http://javascript.internet.com -->

//<!-- Begin

function printWindow() 

{

var agt=navigator.userAgent.toLowerCase();
bV = parseInt(navigator.appVersion);

if (agt.indexOf("mac") != -1) 
	{
	alert("Press 'Cmd+p' on your keyboard to print article.");
	}

else if (bV >= 4) 
	{
	window.print();
	}

else 
	{
	alert("Press 'Ctrl+p' on your keyboard to print article.")
	}


}

//  End -->

