function win(fileName) {
     myFloater = window.open('','ContractorsHotlineWindow','scrollbars=yes,status=no,width=400,height=500,screenX=400,screenY=400,top=120,left=380')
     myFloater.location.href = fileName;
	 myFloater.focus();
}

function imgWin(fileName) {
     myFloater = window.open('','ImageWindow','scrollbars=yes,status=no,width=400,height=250,screenX=400,screenY=400,top=120,left=380')
     myFloater.location.href = fileName;
	 myFloater.focus();
}

function display_image(fileName) {
mywindow=window.open("","help","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,status=no,width=440,height=320,screenX=400,screenY=400,top=120,left=380'");
mywindow.document.write("<HTML><HEAD>");
mywindow.document.write("<TITLE>Contractors Hotline Image Viewer</TITLE>");
mywindow.document.write("</HEAD><BODY BGCOLOR=000000 TEXT=54FF9F>");
mywindow.document.write("<img src='"+ fileName + "' border=0 width=400>");
mywindow.document.write("<center><FORM><INPUT STYLE='font-weight:bold' TYPE='button' VALUE='Close Image Viewer' onClick='window.close()'></FORM>");
mywindow.document.write("</CENTER>");
mywindow.document.write("</BODY></HTML>");
}
