// JavaScript Document
/* USAGE: javascript:openPop('filename.html','windowname', width, height); */	
leftPos = 1
if (screen) {
	leftPos = (screen.width/2)-500
}
topPos = 1
if (screen) {
	topPos = (screen.height/2)-300
}

function openPop(url,name,popW,popH) {
	window.open(url,name,'width=' + popW + ',height=' + popH + ',scrollbars=no,toolbar=no,status=yes,resizable=no,top=' + topPos + ',left=' + leftPos);void(0);
}