 function onclickfunc(name, height, width)
 {
    var  params = "toolbar=0, status=0, resizable=0, height="+height+", width="+width;
	var path="images/"+name+".jpg";
	var winname = "name_"+name;
    var newWindow = window.open("",winname, params);
	var html ="<html><head><title>Suvar</title></head><body onLoad=\"javascript:window.focus()\" topmargin=0, leftmargin=0><img src=\""+path+"\"></body>"
	 if (newWindow != 0)
	 {
	    newWindow.document.write(html);
		newWindow.document.close();
	 }
 }
