<!--
function zoom(url,wnd_name,width,height,scroll) {    
	if (top[wnd_name]!=null && 
		typeof(top[wnd_name])=='object' && 
		!top[wnd_name].closed && 
		top[wnd_name].load_flag==1) {
		if(top[wnd_name].document.location.href!=url) top[wnd_name].document.location.href=url;
		top[wnd_name].focus();
	}
	else top[wnd_name]=window.open(url,wnd_name,'width='+width+',height='+height+',toolbar=no,scrollbars='+scroll+',menubar=no,status=no,resizable=no,left='+String((screen.width-358)/2)+',top='+String((screen.height-345)/2));
}
// -->   

