var root = "/";
function popupWmv(wmvSrc) {
	win = window.open(root + "asp/puWmv.asp?wmvSrc=" + wmvSrc, "wmvWin", "resizable=0, scrollbars=0, height=320, width=320");
	win.focus();
}

function popupImg(imgSrc) { 
	win = window.open(root + "asp/puImg.asp?imgSrc=" + imgSrc, "imgWin", "resizable=1, scrollbars=1, height=1, width=1");
	win.focus();
}

function popup(url,h,w) {
	open_prop = "resizable=0,scrollbars=1, height=" + h + ",width=" + w;
	win = window.open(url, "wmvWin", open_prop);
	win.focus();
}