
// hide script from old browsers
var newwin;

var w = 480, h = 340;

if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}

var popW = 400, popH = 200;

var leftPos = (w-popW)/2, topPos = (h-popH)/2;

function launchCourseDesc(winurl,winname,winfeatures)
{
newwin = window.open(winurl,winname,'toolbar=no' + ',resizable=no' + ',scrollbars=yes' + ',width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);

}


function copyRightWin(winurl,winname,winfeatures)
{
var popW2 = 315, popH2 = 360;

var leftPos2 = (w-popW2)/2, topPos2 = (h-popH2)/2;

newwin = window.open(winurl,winname,'resizable=no' + ',width=' + popW2 + ',height=' + popH2 + ',top=' + topPos2 + ',left=' + leftPos2);

}

// end hiding script from old browsers


