function snow() { var datenow = new Date(); return escape(datenow.toGMTString()); } function openDisease(dis) { var diseaseURL = location.protocol + "//" + location.host + "/" + dbPath + "/index.htm?OpenAgent&disease=" + dis + "&ts=" + snow(); window.location = diseaseURL; } function openSummary(id, fName) { var summaryURL = location.protocol + "//" + location.host + "/" + dbPath + "/v_ProtocolsByID/" + id + "/$FILE/" + fName; //?OpenDocument&ts=" + snow(); window.location = summaryURL; } function openStudyFiles(id, disID) { var studyURL = staffdbLocation + "/v_ProtocolsByID/" + id + "?OpenDocument&disID=" + disID + "&ts=" + snow(); window.location = studyURL; } function doRollover(theElement) { theElement.style.textDecoration = "underline"; theElement.style.color = "#3366FF"; } function doRollout(theElement) { theElement.style.textDecoration = "none"; theElement.style.color = "#666666"; }