function printPage() {
loc = top.fraMain.location.href
window.open(loc,'','left=-1000,top=-1000,width=100,height=100')
}


var message="Copyright ©ZPL"; // Message for the alert box

// Don't edit below!

function click(e) {
	if (document.layers) {
		if (e.which == 3) {
			alert(message);

			return false;
			}
		}
	}
	if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	}
document.onmousedown=click;

for (i=0; i<document.all.length; i++){
            document.all(i).unselectable = "on";
}
function fnInit(){
for (i=0; i<document.all.length; i++){
				document.all(i).unselectable = "on";
	}
}
document.oncontextmenu=
		function() 
		{
		return false;
		}



