// JavaScript Document

function OpensWindow(winName,url,X,Y,W,H){
var WinD11=window.open(url,winName,'top='+X+',left='+Y+',screenX='+X+',screenY='+Y+',scrollbars=0,toolbar=0,location=0,status=0,menubar=0,resizeable=0,width='+W+',height='+H+'');
opener=self
}
function OpensWindow2(winName,url,X,Y,W,H){
var WinD11=window.open(url,winName,'top='+X+',left='+Y+',screenX='+X+',screenY='+Y+',scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizeable=0,width='+W+',height='+H+'');
opener=self
}


var wParam1="width=1000, height=800, toolbar=0,directories=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0";
function callJavascript(msg){
	newWin=window.open("episodes/index.html","newWin1",wParam1);
		newWin.focus();
}
