
function zooma(){alert('sss');}

function zoom (img,w,h){
	//alert("="+img+" : "+w+"/"+h); 
	var x=screen.width;
	var y=screen.height;
	var left=(x-w)/2;
	var top=(y-h)/2;
	win = window.open("", "",'left='+left+', top='+top+', width='+w+', height='+h+', resizable=1');
	win.document.write("<html><head><title>&#160;Photos</title><meta http-equiv='Content-TYPE' content='text/html; charset=UTF-8'></head><body topmargin='0' leftmargin='0' bottommargin='0' rightmargin='0'><img style='cursor:hand' title='Close Window'  width='100%' height='100%' onclick='window.close()' src='"+img+"'></body></html>");
	//win.document.bgColor="lightblue"
	//win.document.close()
	}

