// JavaScript Document
function zoom(img_name,tit, path, w, h)
{
	popup=window.open( "","popup", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=50,top=50,width=150,height=150");
	popup.document.open( "text/html" );
	popup.document.write( "<html><head><link href='main.css' rel='stylesheet' type='text/css'><title>"+tit+"</title></head>\n" );
	popup.document.write( "<body onload=\"var img = new Image().src='" + path + img_name + "'; window.resizeTo(document.images[0].width, document.images[0].height);\" >");
	popup.document.write( "<img src=" + path + img_name + " alt='"+tit+"'>\n" );
	popup.document.write( "</body></html>" );
	popup.document.close();
}

//