var oWindow;

function launchWindow(sURL, lWidth, lHeight){
    var lWinLeft = (screen.width - lWidth) / 2;
    var lWinTop = (screen.height - lHeight) / 2;

    oWindow = window.open(sURL, 'apply', ('width=' + lWidth + ',height=' + lHeight + ',resizable=yes,scrollbars=yes,menubar=no,status=yes,top=' + lWinTop + ',left=' + lWinLeft));

    if(javascript_version > 1.0 && navigator.appVersion.indexOf("MSIE 4") == -1)
	{
      setTimeout('oWindow.focus();',250);
    }
}