function openWindow(vUrl, vHeight, vWidth) {
	winName = window.open (vUrl, "popwin", "height="+vHeight+",width="+vWidth+",menubar,scrollbars,resizable")
	winName.focus();
	return false;
}
