
function popup(url, popW, popH) {
	popWidth=popW?popW:540;
	popHeight=popH?popH:500;
	popName=url.substr(0,url.length-5);
	window.open(url, popName, "width="+popWidth+",height="+popHeight+",location=no,menubar=no,resizable=no,scrollbars=no,status=yes,titlebar=no,toolbar=no")
}

function popup1(url, popW, popH) {
	popWidth=popW?popW:540;
	popHeight=popH?popH:500;
	popName=url.substr(0,url.length-5);
	window.open(url, popName, "width="+popWidth+",height="+popHeight+",location=no,menubar=no,resizable=no,scrollbars=yes,status=yes,titlebar=no,toolbar=no")
}

