function launch_pop_window(WindowName, WindowTitle, w, h)
{

var width = screen.availWidth;
var height = screen.availHeight;

WizardWindow = "toolbar=no,"+
                "location=no,"+
                "directories=no,"+
                "resizable=yes,"+
                "menubar=no,"+
                //"scrollbars=auto,"+
                "scrollbars=yes,"+
                "status=no,"

window.open(WindowName,WindowTitle,'width=' + w +',height=' + h + ', left=' + ((width - w - 10) * .5) + ', top=' + ((height - h - 30) * .5) + ', '+WizardWindow);

}

//************************************************************ OPEN WINDOW CENTERED IN SCREEN *********************************************
function openWin(URL, w, h)
{
	var width = screen.availWidth;
	var height = screen.availHeight;
	var win=window.open(URL, '', 'width=' + (w+20) + ', height=' + (h+30) + ', scrollbars=yes resizable=yes, left=' + ((width - w - 10) * .5) + ',top=' + ((height - h - 30) * .5));
}
