var w1, eswin1

function aprifin(w,h,url){
     {
	    if (eswin1==1) {
	      w1.close();
		  eswin1=0;}
		
	    ww=w+30
		hw=h+60
	    dimw="width=" + ww + ",height=" + hw; 
		posw="left=300,top=80,screenX=300,screenY=80"
		
		caratt=dimw +"," + posw
		
	    dimi="width=" + w + ",height=" + h; 
	
		w1 = window.open(url ,"win1", caratt);
	    w1.document.close();
		w1.focus();
		eswin1=1;
    
		}

}


