

function popUp(URL,Type,Height,Width) {
var Options=""; 
newwindow = '';
//theTop = (screen.height/2 - height/2);
//theLeft = (screen.width/2 - width/2);
theTop = '30';
theLeft = '100';
//alert (theTop + " = theTop");
//alert (screen.height/2 - height/2);
if (Type=="console") {
	Options="resizable,height="+Height+",width="+Width;
}

if (Type=="fixed") {
	//Options="status,height="+Height+",width="+Width;
	//theTop = screen.height/2 - height/2;
	//theLeft = screen.width/2 - width/2;
	
	Options="status,height="+Height+",width="+Width+",scrollbars = 0, top=" + theTop + ", left=" + theLeft;
}
if (Type=="elastic") {
	Options="toolbar,menubar,scrollbars,resizable,location,height="+Height+",width="+Width;
	//Options="toolbar,menubar,scrollbars,resizable,location,height="+Height+",width="+Width+", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\"");
}
if (!newwindow.closed && newwindow.location) {
	newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(URL,'newWin', Options, Height, Width);
		if (!newwindow.opener) {
			newwindow.opener = self;
		}
		if (window.focus) {
			//alert ("focused_POPUP");
			newwindow.focus();
			newwindow.resizeTo (Width, Height);
		}
		return false;
		}
}