function TIMEOUT_resizeImage(targetId,domain,documentRoot,path,width,height,zoom,offset_x,offset_y){if(path.strip()!=""){var target=$(targetId);var pathPattern=new RegExp("/"+documentRoot+"(.*)");var result=pathPattern.exec(path)[1];var src=domain+"/resizeImage/htdocs"+result+"?";src=src+"width="+width+"&";src=src+"height="+height+"&";src=src+"zoom="+zoom+"&";src=src+"xOffset="+offset_x+"&";src=src+"yOffset="+offset_y;target.setAttribute("src",src);}
return null;}
