function popUp(strURL, strName, strType, strTop, strLeft, strWidth, strHeight) {
var strOptions = "";
if (strType == "console") strOptions = "resizable, top="+strTop+", left="+strLeft+", width="+strWidth+", height="+strHeight;
if (strType == "fixed") strOptions = "status, top="+strTop+", left="+strLeft+", width="+strWidth+", height="+strHeight;
if (strType == "elastic") strOptions = "scrollbars, resizable,  top="+strTop+", left="+strLeft+", width="+strWidth+", height="+strHeight;
var newWin = window.open(strURL, strName, strOptions);
newWin.focus();
}
