var p = null;
function OpenWin(theName,theSrc,theWidth,theHeight)
{
// var theLeft=(screen.width-theWidth) / 2;
// var theTop=(screen.height-theHeight) / 2;
var theLeft=100;
var theTop=100;
var options="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+theWidth+",height="+theHeight+",left="+theLeft+",top="+theTop+",dependent=yes,fullscreen=no";
p = window.open(theSrc,theName,options);
p.focus();
}

function OpenVideo(theName,theSrc,theWidth,theHeight)
{
// var theLeft=(screen.width-theWidth) / 2;
// var theTop=(screen.height-theHeight) / 2;
var theLeft=100;
var theTop=100;
var options="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+theWidth+",height="+theHeight+",left="+theLeft+",top="+theTop+",dependent=yes,fullscreen=no";
p = window.open(theSrc,theName,options);
p.focus();
}

function OpenSlideShow(theName,theSrc,theWidth,theHeight)
{
// var theLeft=(screen.width-theWidth) / 2;
// var theTop=(screen.height-theHeight) / 2;
var theLeft=100;
var theTop=100;
var options="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+theWidth+",height="+theHeight+",left="+theLeft+",top="+theTop+",dependent=yes,fullscreen=no";
p = window.open(theSrc,theName,options);
p.focus();
}
