

function PopupVideo(url, width, height)
{
var l = (screen.width - width) / 2 - 10;
var t = (screen.height - height) /2 - 10;
var opts = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + width + ',height=' + height + ',top=' + t + ' ,left=' + l;
var name = 'newWin';
var comwin = window.open(url, name, opts);
comwin.focus();
}



function Popup(url, width, height)
{
var l = (screen.width - width) / 2 - 10;
var t = (screen.height - height) /2 - 10;
var opts = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + screen.width + ',height=' + screen.height + ',top=' + t + ' ,left=' + l;
var name = 'newWin2';
var comwin2 = window.open(url, name, opts);
comwin2.focus();
}

function websitepopup(url, width, height)
{
var l = (screen.width - width) / 2 - 10;
var t = (screen.height - height) /2 - 10;
var opts = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height + ',top=' + t + ' ,left=' + l;
var name = 'newWin3';
var comwin3 = window.open(url, name, opts);
comwin3.focus();
}