function openlargeimg(img_name,imgsrc)

{
	var newImg = new Image();
	newImg.src = imgsrc;
	 w = newImg.width;
	 h = newImg.height;
	 if (w == 0 && h==0)
	 {

		var newImg1 = new Image();
		newImg1.src = imgsrc;
		w = newImg1.width;
		h = newImg1.height;
	 }
	var newwin;
	l = (screen.availWidth-10 - w) / 2;
  	t = (screen.availHeight-20 - h) / 2;
	features = "width="+w+",height="+h+",left="+l+",top="+t;
	features += ",screenX="+l+",screenY="+t;
	features += ",scrollbars=0,resizable=1,location=0";
	features += ",menubar=0,toolbar=0,status=0";
   	newwin=window.open("", "", features);
	newwin.document.write("<html><head><title>"+img_name+"</title><meta http-equiv='imagetoolbar' content='no'><link href='css/moksha_style.css' rel='stylesheet' type='text/css'></head>");
	newwin.document.write("<body>");
	newwin.document.write("<table width='100%' border='1' cellspacing='0' cellpadding='0'>")
	newwin.document.write("<tr valign='top' bgcolor='#000000'>")
	newwin.document.write("<td align='center'><img src='"+imgsrc+"' alt='"+img_name+"' width="+w+" height="+h+"></td></tr>")
	newwin.document.write("</table></body></html>")
	newwin.document.close();
	
}
