


function popUp(strURL,strType,strHeight,strWidth,scrollbar) {
var strOptions=""
var popW = 800 
var popH = 650
var leftPos = (screen.width-popW)/2
var topPos = (screen.height-popH)/2;

if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="resizable,height="+strHeight+",width="+strWidth+",top="+topPos+", left="+leftPos;
if (strType=="elastic_scroll") strOptions="resizable,height="+strHeight+",width="+strWidth+",top="+topPos+", left="+leftPos+", scrollbars=yes";
window.open(strURL, 'newWin', strOptions);
}



// end hiding script from old browsers -->
