﻿var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}
function popUp(strURL,strType,strHeight,strWidth,prn) {
closeWin();
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth+",top=50,left=50";
if (strType=="fixed") strOptions="height="+strHeight+",width="+strWidth+",top=50,left=50";
if (strType=="mielastic") strOptions="scrollbars,height="+strHeight+",width="+strWidth+",top=50,left=50";
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth+",top=50,left=50";
newWin = window.open(strURL, 'newWin', strOptions);

newWin.focus();
if (prn=="Y") {
newWin.print();
}

} 

