// JavaScript Document

function popupImage(src,w,h,title){
	var url  = src;
	var name = title == undefined ? "Image" : title;
	var params = "width="+w+", height="+h;
	window.open(url,name,params,true);
}