// JavaScript Document

var popUpWin=0;
function apri(l){
	if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open(l,'neww','left=0,top=0,menubar=no,location=yes,titlebar=no,directories=no,resizable=yes,scrollbars=yes,status=no, width='+screen.width+', height='+screen.height);
}
