/*
 * date:	2003-02-12
 * info:	http://inspire.server101.com/js/w/
 */

function wPop(u, n, w, h, l, t, f) {
	var p = window.open(u, n, 'width='+w+',height='+h+',resizable,'+f);
	if (!p.opener) p.opener = window;
	if (window.resizeTo) p.resizeTo(w, h);
	if (l && t && screen) {
		if (l < 0) l += screen.availWidth-w;
		if (t < 0) t += screen.availHeight-h;
		p.moveTo(l, t);
	}
	if (window.focus) p.focus();
	return p;
}

function mPop(u, n, w, h, l, t) {
	return wPop(u, n, w+10, h+29, l, t);
}

function win1() {
    window.open("videopopup.html","Window1","menubar=no,width=480,height=460,toolbar=no,scrollbars=yes");
}
function win2() {
    window.open("videopopup2.html","Window1","menubar=no,width=470,height=400,toolbar=no,scrollbars=yes");
}