function zoom(url, width, height, title){
  win = open("", "_Window","width="+width+",height="+height+",status=no,toolbar=no,menubar=no,scrollbars=yes");
  win.document.open();
  win.document.write("<html><head><title>"+title+"</title></head>");
  win.document.write("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
  win.document.write("<img src=\""+url+"\" width=\""+width+"\" height=\""+height+"\"/>");
  win.document.write("</body>");
  win.document.close();
}

function details(id){
  win = open("/details.jsp?id="+id, "_Window","width=600,height=300,status=no,toolbar=no,menubar=no,scrollbars=yes");
}

function cl(inp, val) {
	if (inp.value == val) inp.value = "";
}

function fl(inp, val) {
	if (inp.value == "") inp.value = val;
}