function  cc(f,city_id){
	f.refresh_area.value=1;
	f.action = '';
	f.submit();
}

function EIS(url,wid,hei) {
	var title = "Picture nr "+url+".";
	var w = screen.width;
	var h = screen.height;
	var iw = wid;
	var ih = hei;
	var posLeft = ((w-iw)/2);
	var posTop = ((h-ih)/2);
	newWindow = window.open("","newWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width="+iw+",height="+ih+", left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+title+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()" onClick="self.close()">');  
	newWindow.document.write('<table border="0" cellspacing="0" cellpadding="0" align="center" ><tr><td>');
	newWindow.document.write('<img src="'+url+'" alt="[ close it ]" >'); 
	newWindow.document.write('</td></tr></table></body></html>');
	newWindow.document.close();
	newWindow.focus();
}
