function init(){
	
}
function popupImage(image,title,wid,hgt,options){
	sw=(screen.width-wid)/2;
	sh=(screen.height-hgt)/2;
	myWind=window.open('','myWind',''+options);
	myWind.document.open();
	myWind.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n');
	myWind.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	myWind.document.write('\n<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />\n');
	myWind.document.write('<meta http-equiv="Imagetoolbar" content="no" />\n');
	myWind.document.write('<title>'+title+'</title>\n');
	myWind.document.write('</head>');
	myWind.document.write('<body style="margin:0;padding:0">\n<img src="http://'+image+'" width="'+wid+'" height="'+hgt+'" />');
	myWind.document.write('\n</body></html>');
	myWind.document.close();
	myWind.focus();
}
$(init);
