
function pop(h, w, p, n, s, r){
	var theHeight=h;
	var theWidth=w;
	var theTop=(screen.height/2)-(theHeight/2)
	var theLeft=(screen.width/2)-(theWidth/2)
	var	features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft;
	var winPop = window.open(p,n,"scrollbars="+s+","+features+",resizable="+r);
	winPop.focus();
}

function processKey(f) {
    var keyvalue = window.event.keyCode;
    if (keyvalue==13) f.submit();
}

