function popup(theURL) {
	winName='project';
	W=680;
	H=500;
	//var left=Math.round((screen.width-W)/2)+"px";
	//var top=Math.round((screen.height-H)/2)+"px";
	var left="0px";
	var top="0px";
	window.open(theURL,winName,"scrollbars=yes,width="+W+", top="+top+", left="+left);
}