
//===========================================================================

// Disable mouse right click.

/*
document.oncontextmenu = function(){return false}
if(document.layers) {
    window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown = function(e){
        if(e.target==document)return false;
    }
}
else {
    document.onmousedown = function(){return false}
}
*/

//===========================================================================

function getCookieData(label) {
   var labelLen = label.length
   var cLen = document.cookie.length
   var i = 0
   while (i < cLen) {
	  var j = i + labelLen
	  if (document.cookie.substring(i,j) == label) {
		 var cEnd = document.cookie.indexOf(";",j)

		 if (cEnd == -1) {
		     cEnd = document.cookie.length
		 }
		 return unescape(document.cookie.substring(j+1,cEnd))
	  }
	  i++
   }
   return ""
}

//===========================================================================

function openExtraWindow(myLink, x, y) {
	if (!window.focus) return;
	var windowName = "Image";
	var myWin = window.open("",windowName,"width=" + x + ",height=" + y + ",dependent=yes,scrollbars=no, resize=no");
	myWin.focus();
	myLink.target = windowName;
}

//===========================================================================


