	var message="";
	function clickIE() { if (document.all) { (message);return false; } }
	function clickNS(e) {
		if (document.layers||(document.getElementById&&!document.all)) {
			if (e.which==2||e.which==3) { (message); return false; }
		}
	}
	
	if (document.layers) { 
		document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS; 
	}
	else{ 
		document.onmouseup=clickNS;document.oncontextmenu=clickIE; 
	}
	
	document.oncontextmenu=new Function("return false");
	
	function FP_popUpMsg(msg) {//v1.0
		alert(msg);
	}
	
	//form tags to omit in NS6+:
	var omitformtags=["input", "textarea", "select"];
	
	omitformtags=omitformtags.join("|");
	
	function disableselect(e){
		if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
			return false
	}
	
	function reEnable(){
		return true;
	}
	
	if (typeof document.onselectstart!="undefined")
		document.onselectstart=new Function ("return false");
	else{
		document.onmousedown=disableselect;
		document.onmouseup=reEnable;
	}

	window.history.forward(1);
	
	// Status Bar Messge Start Here
	function sb10_makeArray(n){
		this.length = n;
		return this.length;
	}
	
	///////////////
	
	isIE=document.all;
	isNN=!document.all&&document.getElementById;
	isN4=document.layers;
	isHot=false;
	
	function ddInit(e){
	  topDog=isIE ? "BODY" : "HTML";
	  whichDog=isIE ? document.all.theLayer : document.getElementById("theLayer");  
	  hotDog=isIE ? event.srcElement : e.target;  
	  while (hotDog.id!="titleBar"&&hotDog.tagName!=topDog){
	    hotDog=isIE ? hotDog.parentElement : hotDog.parentNode;
	  }  
	  if (hotDog.id=="titleBar"){
	    offsetx=isIE ? event.clientX : e.clientX;
	    offsety=isIE ? event.clientY : e.clientY;
	    nowX=parseInt(whichDog.style.left);
	    nowY=parseInt(whichDog.style.top);
	    ddEnabled=true;
	    document.onmousemove=dd;
	  }
	}
	
	function dd(e){
	  if (!ddEnabled) return;
	  whichDog.style.left=isIE ? nowX+event.clientX-offsetx : nowX+e.clientX-offsetx; 
	  whichDog.style.top=isIE ? nowY+event.clientY-offsety : nowY+e.clientY-offsety;
	  return false;  
	}
	
	function ddN4(whatDog){
	  if (!isN4) return;
	  N4=eval(whatDog);
	  N4.captureEvents(Event.MOUSEDOWN|Event.MOUSEUP);
	  N4.onmousedown=function(e){
	    N4.captureEvents(Event.MOUSEMOVE);
	    N4x=e.x;
	    N4y=e.y;
	  }
	  N4.onmousemove=function(e){
	    if (isHot){
	      N4.moveBy(e.x-N4x,e.y-N4y);
	      return false;
	    }
	  }
	  N4.onmouseup=function(){
	    N4.releaseEvents(Event.MOUSEMOVE);
	  }
	}
	
	function hideMe(){
	  if (isIE||isNN) whichDog.style.visibility="hidden";
	  else if (isN4) document.theLayer.visibility="hide";
	}
	
	function showMe(){
	  if (isIE||isNN) whichDog.style.visibility="visible";
	  else if (isN4) document.theLayer.visibility="show";
	}
	document.onmousedown=ddInit;
	document.onmouseup=Function("ddEnabled=false");

	//Hide status bar msg II script- by javascriptkit.com
	//Visit JavaScript Kit (http://javascriptkit.com) for script
	//Credit must stay intact for use

	function hidestatus(){
		window.status=''
		return true
	}
	
	if (document.layers)
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
	
	document.onmouseover=hidestatus
	document.onmouseout=hidestatus

	// -- MOZILLA FIREFOX -- CODE TO DISABLE RIGHT CLICK & PAGE SELECTION, CTRL + C, CTRIL + V etc.. BACKSPACE
	
	function hp_ne()
	{
	  return true
	}
	onerror=hp_ne;
	function hp_dn(a)
	{
	  return false
	}
	function hp_cm()
	{
	  //alert("\u0054\u0068\u0069\u0073\u0020\u0070\u0061\u0067\u0065\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006E\u0020\u0070\u0072\u006F\u0074\u0065\u0063\u0074\u0065\u0064\u002E\u0020\u0050\u0072\u0065\u0076\u0069\u0065\u0077\u0020\u006F\u006E\u006C\u0079\u002E");
	  return false
	}
	function hp_de(e)
	{
	  return(e.target.tagName!=null&&e.target.tagName.search('^(INPUT|TEXTAREA|BUTTON|SELECT)$')!=-1)
	};
	function hp_md(e)
	{
	  mac=navigator.userAgent.indexOf('Mac')!=-1;
	  if(document.all)
	  {
	    if(event.button==2||(mac&&(event.ctrlKey||event.keyCode==91)))
	    {
	     // alert("\u0054\u0068\u0069\u0073\u0020\u0070\u0061\u0067\u0065\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006E\u0020\u0070\u0072\u006F\u0074\u0065\u0063\u0074\u0065\u0064\u002E\u0020\u0050\u0072\u0065\u0076\u0069\u0065\u0077\u0020\u006F\u006E\u006C\u0079\u002E");
	      return(false)
	    }
	  }
	  else
	  {
	    if(e.which==3||(mac&&(e.modifiers==2||e.ctrlKey)))
	    {
	     // alert("\u0054\u0068\u0069\u0073\u0020\u0070\u0061\u0067\u0065\u0020\u0068\u0061\u0073\u0020\u0062\u0065\u0065\u006E\u0020\u0070\u0072\u006F\u0074\u0065\u0063\u0074\u0065\u0064\u002E\u0020\u0050\u0072\u0065\u0076\u0069\u0065\u0077\u0020\u006F\u006E\u006C\u0079\u002E");
	      return false
	    }
	    else if(e.which==1)
	    {
	      window.captureEvents(Event.MOUSEMOVE);
	      window.onmousemove=hp_dn
	    }
	  }
	}
	function hp_mu(e)
	{
	  if(e.which==1)
	  {
	    window.releaseEvents(Event.MOUSEMOVE);
	    window.onmousemove=null
	  }
	}
	
	if(navigator.appName.indexOf('Internet Explorer')==-1||(navigator.userAgent.indexOf('MSIE')!=-1&&document.all.length!=0))
	{
	  if(document.all)
	  {
	    mac=navigator.userAgent.indexOf('Mac')!=-1;
	    version=parseFloat('0'+navigator.userAgent.substr(navigator.userAgent.indexOf('MSIE')+5),10);
	    if(!mac&&version>4)
	    {
		  if (!/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent) && !/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ 	// Not Google Chrome 
			  document.oncontextmenu=hp_cm;
		  }
	    }
	    else
	    {
	      document.onmousedown=hp_md;
	      document.onkeydown=hp_md;
	    }
	    document.onselectstart=hp_dn
	  }
	  else if(document.layers)
	  {
	    window.captureEvents(Event.MOUSEDOWN|Event.modifiers|Event.KEYDOWN|Event.MOUSEUP);
	    window.onmousedown=hp_md;
		window.onkeydown=hp_md;
	    window.onmouseup=hp_mu
	  }
	  else if(document.getElementById&&!document.all)
	  {
	  	if (!/Chrome[\/\s](\d+\.\d+)/.test(navigator.userAgent) && !/Safari[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ 	// Not Google Chrome 
			document.oncontextmenu=hp_cm;
			document.onmousedown=hp_de;
		}	
	  }
	}
	function hp_dp1()
	{
	  for(i=0;i<document.all.length;i++)
	  {
	    if(document.all[i].style.visibility!="hidden")
	    {
	      document.all[i].style.visibility="hidden";document.all[i].id="hp_id"
	    }
	  }
	};
	function hp_dp2()
	{
	  for(i=0;i<document.all.length;i++)
	  {
	    if(document.all[i].id=="hp_id")document.all[i].style.visibility=""
	  }
	};
	window.onbeforeprint=hp_dp1;
	window.onafterprint=hp_dp2;
	document.write('<style type="text/css" media="print"><!--body{display:none}--></style>');
	function hp_dc()
	{
	  hp_ta.createTextRange().execCommand("Copy");
	  setTimeout("hp_dc()",300)
	}
	if(navigator.appName.indexOf('Internet Explorer')==-1||(navigator.userAgent.indexOf('MSIE')!=-1&&document.all.length!=0))
	{
	  if(document.all&&navigator.userAgent.indexOf('Opera')==-1)
	  {
	    //document.write('<div style="position:absolute;left:-1000px;top:-1000px"><input type="textarea" name="hp_ta" value=" " style="visibility:hidden"></div>');
	    //hp_dc()
	  }
	}
	function hp_ndd()
	{
	  return false
	}
	document.ondragstart=hp_ndd;
	
	//Disable Print Screen
	//setInterval("window.clipboardData.setData('text','')",2);
	
