<!--
var message="Sorry, we don't allow that on this site!.";

function click(e)	{
if (document.all) 	{
if (event.button == 2)	{
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

{
if (top.location != location) {
    top.location.href = document.location.href ;
}
}
//-->

//More Great Scripts from JavaFile www.Javafile.com

<!-- // THIS SCRIPT FROM BRAVENET
	// http://www.bravenet.com
	//THIS GOES ON THE MAIN PAGE
function openPopUp(url,target,attributes) 
	{
		popup = window.open(url,target,attributes);
		popup.moveTo(10, 10);//tl
							popup.focus();blur();
				}
		//   THIS GOES ON THE MAIN PAGE-->

