function openIT(meurl, meWidth, meHeight, mescrollbars) {
	theurl=meurl
	wname ="POPUP"
	W=meWidth;
	H=meHeight;
	S=mescrollbars;
	openchromeless(theurl, wname, W, H, S)
}

var splashWin;

function openchromeless(theURL, wname, W, H, S) {

	var windowW = W;
	var windowH = H;
	var mescrollbars = S;
	if ((navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion)>=4) && (navigator.platform == "Win32")) isie = true
	else isie = false
	
	if (isie) {
		var parameters = escape(theURL)
		if (splashWin == null || splashWin.closed) {
			splashWin = window.open( theURL , wname, "toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=" +S + ",resizable=1,width=" + W + ",height=" + H)

	    } else {
			splashWin = window.open( theURL , wname, "toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=" +S + ",resizable=1,width=" + W + ",height=" + H)

        }
	} else splashWin = window.open(theURL, wname, "toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=" +S + ",resizable=1,width=" + W + ",height=" + H);
    splashWin.blur();
	splashWin.focus();
}