

function seeImage(img,height,width) { 
//alert(img+" "+height+" "+width);
height = (height+20);
width = (width+20);
var popWin = window.open(img,'gallery','scrollbar=none,status=none,height='+height+',width='+width+',menubar=none');
popWin.focus();
     }
	 