var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}
function popUp(strURL,strType,strHeight,strWidth,strLeft,strTop) {
closeWin();
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth+",left="+strLeft+",top="+strTop;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
} 

