function openPopupWindow(src,w,h) {
	newWin=window.open(src, "newWin", "width="+w+", height="+h+", location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=no");
	newWin.focus();
}