
function openNew (setURL) {
var w = 500;
var h = 400;
var theURL = setURL
var winLeft = (screen.width - w) / 2;
var winTop  = (screen.height - h) / 2;
var winOpt  = "status=no, menubar=no,toolbar=no, resizable=no, scrollbars=no";
openPopUp(theURL,"pop1",w,h,winTop,winLeft,winOpt);
}


function openPopUp(theURL,name,width,height,top,left,options){
	newWindow = window.open(theURL, name, options + ",width=" + width + ",height=" + height + ",top=" + top + ",left=" + left);
	newWindow.focus();
	return newWindow;
}

function handlePress(e) {
  //var ctrlPress_N = (window.Event) ? e.modifiers & Event.CONTOL_MASK : e.controlKey;
  // if (ctrlPress_N) {
  //  alert("The Control Key is not supported on this site");
//	return false;
 // 	}
 // else {
	var checkMe= e.ctrlKey;
	var myEvent = e.type;
	alert("got here.... now check what key is pressed. If control Key then var checkMe = " + myEvent);
   	if (e && checkMe){
		alert("Control key not supported on this site");
	}
	return false;
}




