<!--

//Disable right mouse click Script

var message="Image saving/right-click disabled!\n\nAll the contents on this website, including but not limited to text, data, photographs, graphics, logos, button icons, images, slogans, trademarks and other material, is the property of International Introductions and is protected by U.S. and international copyright laws. The collection, arrangement and assembly of all content on this website is the exclusive property of International Introductions and is also protected by U.S. and international copyright laws. International Introductions owns the copyright in the overall selection, coordination, arrangement and enhancement of such content, and owns the rights in, or license to use, the individual components of such content. It is strictly prohibited to copy, upload, reproduce, modify, distribute, transmit, sell, license, rent, publish, display, adapt, edit, frame or create derivative works from such content, or otherwise use the material in any way for any public or commercial purpose.";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 



//On site leave popup Script

<!--
var invokePopup=true;
function doPopup1(url)
{
if (invokePopup) {
var visit=GetCookie("popmagician");
if (visit!=null)
	return; // Cookie hasn't timed out yet
setCookie(1* (24*60*60) ); // number of seconds until cookie expires
settings="width=550, height=200, top=100, left=100, titlebar=yes, menubar=no, toolbar=no, location=no, directories=no, resizable=no, scrollbars=no, status=no";
mypopwin=window.open(url, 'myname', settings);
mypopwin.focus();
}
}

function GetCookie(name) {
	var arg=name+"=";
	var alen=arg.length;
	var clen=document.cookie.length;
	var i=0;
	while (i<clen) {
	var j=i+alen;
	if (document.cookie.substring(i,j)==arg)
	return "here";
	i=document.cookie.indexOf(" ",i)+1;
	if (i==0) break;
	}
	return null;
}

function setCookie(expireSeconds){
	var expire=new Date();
	expire=new Date(expire.getTime()+(expireSeconds*1000));
	document.cookie="popmagician=here; expires="+expire;
}// -->
