// JavaScript Document
document.oncontextmenu=new Function("return false")
	
//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
	document.onmousedown=(typeof disableselect != "undefined") ? disableselect : null;
	document.onclick=(typeof reEnable != "undefined") ? reEnable : null;
}

previewPortrait = function (dataID) {
  var Hauteur = (screen.availHeight) ? screen.availHeight -42 : 480 ;
  popUpWin = open("preview_f.asp?imageID="+dataID, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=1,copyhistory=no,width=628,height='+Hauteur+',left0, top=0,screenX=0,screenY=0');
  popUpWin.focus();
}

