function PopWin(url,w,h) {
	newWin =
window.open(url,"newWin","screenX=10,screenY=10,width=" + w + ",height=" + h + ",resizable=yes,dependent=yes,directories=no,menubar=no,location=no,titlebar=yes,status=no,toolbar=no,scrollbars=yes");
	if (newWin)
		newWin.focus();
}

