// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height){
  if(popUpWin){
    if(!popUpWin.closed){
	    popUpWin.close();
	} 
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.focus();
}


var popUpMyWin=0;
function popUpMyWindow(URLStr, windowName, left, top, width, height){
  if(popUpMyWin){
    if(!popUpMyWin.closed){
	    popUpMyWin.close();
	} 
  }
  popUpMyWin = open(URLStr, windowName, 'toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpMyWin.focus();
}
