function zobraz(name, file,wi,he)   {		
   	 theURL=file;
   	 W = parseInt(wi);
   	 H = parseInt(he);
   	 okno = window.open(theURL, "navrh" ,"width="+W+",height="+H+",left=0,top=0");
   	 okno.resizeTo(W,H);
   	 okno.focus();
}

function send(adresa) {
	zobraz ('Send', '/send.php?address='+adresa, 300, 200); 	
}
