
function view_image(loc, w, h)
{
//loca=../Gallery/?.jpg.html
	w=w+30;
	h=h+50;
	var index=loc.indexOf(".", 3);
	var atom_name=loc.substring(11, index);
	//alert(index+"__"+atom_name);
	var window_name="Gallery_";
	//window name is Gallery_?
	window_name=window_name.concat(atom_name);
	popup=window.open(loc,window_name,"height=5,width=5,toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0");

	//popup=window.open(loc,"Gallery","height="+h+",width="+w+",toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0");

	popup.resizeTo(w, h);
	if (window.focus) {popup.focus();}
}
