function popupImage(url){
	var startW = 150;
	var startH = 100;
	var top = screen.height/2-startH;
	var left = screen.width/2-startW/2;
	//var params = 'Toolbar=0,location=0,Menubar=0,resizable=0,Scrollbars=no,height='+startH+',width='+startW+',screenX='+left+',screenY='+top+',top='+top+',left='+left;
	var params = 'Toolbar=0,location=0,Menubar=1,resizable=1,Scrollbars=no';//,screenX='+left+',screenY='+top+',top='+top+',left='+left;
	//var wnd = window.open('img_popup.html', 'ppimg', params);
	var wnd = window.open('', 'ppimg', params);
		wnd.resizeTo(300, 450);
	wnd.document.writeln('<html>');
	wnd.document.writeln('<head>');
	wnd.document.writeln('<style>');
	wnd.document.writeln('html, body {margin:0px; padding:0px;}');
	wnd.document.writeln('</style>');
	wnd.document.writeln('<script type="text/javascript">');
	wnd.document.writeln('function myResize(w,h){');
	//wnd.document.writeln('w = document.getElementById(\'id_image\').width + 30');
	//wnd.document.writeln('h = document.getElementById(\'id_image\').height + 70');
	wnd.document.writeln('window.resizeTo(w,h);');
	wnd.document.writeln('}');
	wnd.document.writeln('var img = new Image(); ');
	wnd.document.writeln('window.onload = function(){');
	//wnd.document.writeln('var top = screen.height/2-100/2;');
	//wnd.document.writeln('var left = screen.width/2-150/2;');
	//wnd.document.writeln('window.moveTo(left, top)');
	//wnd.document.writeln('window.resizeTo(100, 150)');
	wnd.document.writeln('img.onload=function(){');
	wnd.document.writeln('document.getElementById(\'id_image\').src=this.src; ');
	//wnd.document.writeln('alert(this.width+" "+this.height);');
	//wnd.document.writeln('alert(this.width +" " + this.height); ');
	//wnd.document.writeln('window.resizeTo(this.width, this.height); ');
	wnd.document.writeln('window.resizeBy(this.width-document.body.clientWidth, this.height-document.body.clientHeight);');
	//window.resizeTo(this.width+30, this.height+70);
	//wnd.document.writeln("setTimeout('myResize', 1500, this.width+30, this.height+70);");
	wnd.document.writeln('var top = screen.height/2-this.height/2; ');
	wnd.document.writeln('var left = screen.width/2-this.width/2; ');
	wnd.document.writeln('window.moveTo(left, top)');
	wnd.document.writeln('}');
	wnd.document.writeln('img.src=\''+url+'\'; ');
	wnd.document.writeln('}');
	wnd.document.writeln('</script>');
	wnd.document.writeln('</head>');
	wnd.document.writeln('<body>');
	wnd.document.writeln('<img id="id_image" src="img/loading.gif" onclick = "window.close();" alt="Click to close window.">');
	wnd.document.writeln('</body>');
	wnd.document.writeln('</html>');
	wnd.document.close();
	//*/
	return false;
}