//==========================
var win2_images;

function open_image(src, width, height,title) {
	var iMyWidth;
	var iMyHeight;
	var features;
	if(!width) {width = 400;}
	if(!height){height = 400;}
	features = "toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes";

	iMyWidth = (window.screen.width-(width))/2; 
	iMyHeight = (window.screen.height-(height))/2;

	if(win2_images!=null){
		try{
		win2_images.close();
		}catch(e){}
	}
	
	 win2_images = window.open("","imgWindow", "height=" + height + ",width=" + width + ",left=" + iMyWidth + ",top=" +
		iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + "," + features+ "");

	if (win2_images != null)	{ win2_images.focus(); }

	  var head = '<head><title>'+title+'</title></head>';

	  var body = '<center><img id="img" src="'+ src+ '"/></center>';
	  
		win2_images.document.write(head + body);
	  
	return false;
}



