function printMe() {
browserName = navigator.appName;
if (navigator.appVersion.indexOf("PPC") != -1){
alert("In the top menu bar of your browser, select File then Print");
}
else {
if (browserName == "Microsoft Internet Explorer") window.print();
else alert("In the top menu bar of your browser, select File then Print");
}
}

