var newWin = null;var newWin2 = null;var mywindow;function closeWin(){if (newWin != null){	if(!newWin.closed) newWin.close();	}}function closeWin2(){if (newWin2 != null){	if(!newWin2.closed) newWin2.close();	}}function closemywindow(){if (mywindow != null){	if(!mywindow.closed) mywindow.close();	}}function popUp(strURL,strHeight,strWidth) {closeWin();var strOptions="";strOptions="status,height="+strHeight+",width="+strWidth;newWin = window.open(strURL, 'newWin', strOptions);newWin.focus();} function popUp2(strURL,strHeight,strWidth) {closeWin2();closemywindow();var strOptions="";strOptions="status,height="+strHeight+",width="+strWidth;newWin2 = window.open(strURL, 'newWin2', strOptions);newWin2.focus();} 
