function openPic(url){
newWindow=window.open(url,'','toolbar=0,location=0,width=200, height="250" directories=0,status=0,menubar=0,scrollbars=1,resizable=1');
newWindow.document.write('<html><title>Model at MumbaiJunction</title><head></head>')
newWindow.document.write('<body onLoad="self.resizeTo(document.images[0].width+50,document.images[0].height+75);" topmargin="5" leftmargin="5" rightmargin="5" bottommargin="5"><img src="'+url+'"></body></html>')
newWindow.location.reload();
newWindow.focus();
}