function init() {

}

function imgwindow(url,width,height) {
//	var im = new Image();
//	im.src=url;
//	width = im.width;
//	height = im.height;
	var w = window.open('','image','width='+width+',height='+height);
	w.document.write('<html><head><title>Photo</title></head><body style="padding: 0px; margin: 0px;"><a href="#" onclick="window.close();"><img src="'+url+'" border="0" /></a></body></html>');
}
