function newImage(ID,file) {
	document.getElementById(ID).src='/images/'+file;
}

function open_window(URL,name,left,top,width,height,menubar){
	 rp=window.open(URL,name,"top="+top+",left="+left+",height="+height+",width="+width+",menubar="+menubar+",scrollbars=1,resizable=1,status=1");
	 rp.focus();
	 return(false);
}

function doSearch(fld, target) 
{
        location.href= target+'?search='+eval("document.forms[0]."+fld).value;
}

function doKeySearch(evt, fld, target) 
{       
        if (evt.keyCode==13) 
        {       
                window.document.forms[0].action = target + '?search=' + eval("document.forms[0]."+fld).value;   
                evt.returnValue = null;
                evt.cancelBubble = true;
                
                doSearch(fld, target);          
        }
        return false;
}
