name = "firstWindow";
var bigWindow = null;
function popupSizedWindow(win) {
	bigWindow=window.open(win,"secWindow","width=560,height=800,scrollbars=yes,resizable=no,status=no,copyhistory=no,screenX=0,screenY=0,left=0,top=0");
//	bigWindow.moveTo(0,0);
//	bigWindow.resizeTo(560, 800);
	bigWindow.focus();
}
name = "TVWindow";
var bigTVWindow = null;
function popTVWindow(win) {
	bigTVWindow=window.open(win,"secTVWindow","width=1024,height=768,scrollbars=no,resizable=no,status=no,copyhistory=no");
	bigTVWindow.focus();
}

