Advertisement
Guest User

rawlings

a guest
Jul 12th, 2010
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. frm_submit_usage_request.cfm:
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <!-- DW6 -->
  6. <head>
  7. <!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
  8. <title>SRL: Toxicology/Carcinogen Exposue Laboratory Usage Request Form</title>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <link rel="stylesheet" href="../mm_lodging1.css" type="text/css" />
  11. <style type="text/css">
  12. <!--
  13. .style3 {color: #FF0000}
  14. .style6 {
  15.     font-size: 14px;
  16.     font-weight: bold;
  17. }
  18. -->
  19. </style>
  20. </head>
  21. <!--- Set the length of the text string for the CAPTCHA image. --->
  22. <cfset stringLength=6>
  23. <!--- Specify the list of characters used for the random text string. The following list
  24.    limits the confusion between upper- and lowercase letters as well as between numbers and
  25.    letters. --->
  26. <cfset
  27.    stringList="2,3,4,5,6,7,8,9,a,b,d,e,f,g,h,j,n,q,r,t,y,A,B,C,D,E,F,G,H,K,L,M,N,P,Q,R,S,
  28.    T,U,V,W,X,Y,Z">
  29. <cfset rndString="">
  30. <!--- Create a loop that builds the string from the random characters. --->
  31. <cfloop from="1" to="#stringLength#" index="i">
  32.     <cfset rndNum=RandRange(1,listLen(stringList))>
  33.     <cfset rndString=rndString & listGetAt(stringList,rndNum)>
  34. </cfloop>
  35. <!--- Hash the random string. --->
  36. <cfset rndHash=Hash(rndString)>
  37. <body bgcolor="#183a53">
  38.  
  39. <!--- There are people on the principal_investigator table  --->
  40. <!--- that have department id's of 0. Since this            --->
  41. <!--- application's reporting feature will need a           --->
  42. <!--- need a department, the pi's are required to have one.
  43. <cfquery name="filter_pi" datasource="OSP">
  44.    SELECT pi_id, rtrim(principal_investigator.PI_lname) & ', ' & rtrim(principal_investigator.PI_fname) as   thename
  45.    FROM principal_investigator
  46.    WHERE principal_investigator.pi_status in ('Y','A')
  47.    ORDER BY principal_investigator.PI_lname+','+principal_investigator.PI_fname;
  48. </cfquery>
  49. --->
  50. <table width="107%" border="0" cellspacing="0" cellpadding="0">
  51.   <tr>
  52.     <td width="15" nowrap="nowrap"><img src="../mm_spacer.gif" alt="" width="15" height="1" border="0" /></td>
  53.     <td height="60" colspan="3" class="logo" nowrap="nowrap"><br />
  54.     SEAWATER RESEARCH LABORATORY</td>
  55.     <td width="13">&nbsp;</td>
  56.     <td width="4">&nbsp;</td>
  57.   </tr>
  58.  
  59.     <tr bgcolor="#ffffff">
  60.     <td colspan="6"><img  src="../mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
  61.     </tr>
  62.  
  63.     <tr bgcolor="#c4c4c6">
  64.     <td width="15" nowrap="nowrap">&nbsp;</td>
  65.     <td height="19" colspan="3" bgcolor="#c4c4c6"class="navText" id="navigation">&nbsp;&nbsp;&nbsp;</td>
  66.     <td width="13">&nbsp;</td>
  67.     <td width="4">&nbsp;</td>
  68.   </tr>
  69.  
  70.     <tr bgcolor="#ffffff">
  71.     <td colspan="6"><img src="../mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
  72.     </tr>
  73.  
  74.     <tr bgcolor="#ffffff">
  75.     <td colspan="2" valign="top" bgcolor="#FFFFFF"><table border="0" cellspacing="0" cellpadding="0" width="15">
  76.         <tr>
  77.         <td width="15">&nbsp;</td>
  78.         </tr>
  79.     </table>    </td>
  80.     <td width="50" valign="top"><img src="../mm_spacer.gif" alt="" width="50" height="1" border="0" /></td>
  81.     <td width="775" valign="top"><table border="0" cellspacing="0" cellpadding="0" width="1139">
  82.         <tr>
  83.         <td width="1139" class="pageName"><p class="style6">Toxicology/Carcinogen Exposure Laboratory Usage Request Form</p></td>
  84.         </tr>
  85.  
  86. <tr>
  87. <td class="bodyText">
  88. <cfform action="qry_submit_usage_request.cfm" >
  89. <table width="825" >
  90. <tr>
  91.   <td rowspan="2" valign="top"><p><strong> Submitter:<br />
  92.   </strong></p>    </td>
  93.   <td colspan="2"><div align="center"><strong>Name</strong></div></td>
  94.   <td><div align="center"></div></td>
  95. </tr>
  96. <tr>
  97.   <td colspan="3"><cfinput type="text" name="submitter" size="50" required="yes" message="Submitter's name is required." />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  98.     <div align="center"></div></td>
  99.   </tr>
  100. <tr>
  101.   <td valign="top"><strong>Email</strong></td>
  102.   <td colspan="3"><cfinput name="submitter_email" size="20" required="yes" message="Submitter's Email Address is required."/></td>
  103. </tr>
  104. <tr>
  105.     <td width="286" rowspan="2" valign="top"><strong>Principal Investigator(s):<span class="style3"><br />
  106.     </span></strong></td>
  107.     <td colspan="2" valign="top">
  108.    
  109.       <div align="center"><strong>Name<br />
  110.       </strong></div>
  111.       </span></td>
  112.     <td valign="top">&nbsp;</td>
  113. </tr>
  114. <tr>
  115.   <td colspan="2" valign="top"><cfinput type="text" name="pi1" size="50"  />
  116.     <br />
  117.     <cfinput type="text" name="pi2" size="50" />
  118.     <br />
  119.     <cfinput type="text" name="pi3" size="50" /></td>
  120.   <td valign="top">&nbsp;</td>
  121. </tr>
  122.   <tr>
  123.     <td valign="top"><strong>Project Description:</strong></td>
  124.     <td colspan="3"><cftextarea name="project_description" rows="2" cols="50" required="yes" message="Project Description required."></cftextarea></td>
  125.   </tr>
  126.   <tr>
  127.     <td height="39" valign="top"><strong>Toxin(s) to be used:</strong></td>
  128.     <td colspan="3" valign="top"><textarea name="toxins" rows="2" cols="50" required="no"></textarea></td>
  129.   </tr>
  130.   <tr>
  131.     <td valign="top"><strong>Quantities of Toxins to be used:</strong></td>
  132.     <td colspan="3">
  133.     <cfinput type="text" name="qty_toxins" size="50"/> </td>
  134.   </tr>
  135.   <tr>
  136.     <td><strong>Target organism:</strong></td>
  137.     <td colspan="3">
  138.    <cfinput type="text" name="target_organism" size="50" /></td>
  139.   </tr>
  140.   <tr>
  141.     <td valign="top"><strong>Known exposure symptoms in humans:</strong></td>
  142.     <td colspan="3"><textarea name="exposure_symptoms" rows="2" cols="50" required="no"></textarea>
  143.       <label></label></td>
  144.   </tr>
  145.   <tr>
  146.     <td valign="top"><strong>Method of Exposure:</strong></td>
  147.     <td colspan="3">
  148.     <cfselect name="exposure_method" size="3" required="yes" message="Exposure Method is required.">
  149.     <option value="Injection">Injection</option>
  150.     <option value="Ingestion">Ingestion</option>
  151.     <option value="Static Bath Immersion">Static Bath Immersion</option>
  152.     <option value="Other">Other</option>
  153.     </cfselect>    </td>
  154.   </tr>
  155.   <tr>
  156.     <td valign="top"><strong>Method of decontamination:</strong></td>
  157.     <td colspan="3"><p>
  158.       <cfselect name="method_decontamination" size="3" required="yes" message="Method of Decontamination is required.">
  159.           <option value="Sequestering">Sequestering</option>
  160.           <option value="Oxidation Destruction">Oxidation Destruction</option>
  161.           <option value="Other">Other</option>
  162.           </cfselect>
  163.        
  164.         </p>      </td>
  165.   </tr>
  166.   <tr>
  167.     <td valign="top"><strong>Decontamination media:</strong></td>
  168.     <td colspan="3"><cfinput type="text" name="decontamination_media" size="50" /></td>
  169.   </tr>
  170.   <tr>
  171.     <td valign="top"><strong>Is the appropriate safety equipment available or has it been  ordered for all authorized personnel?</strong></td>
  172.     <td colspan="3" valign="top"><cfselect name="cbo_personnel" size="3" required="yes" message="Has the appropriate safety equipment been ordered for all authorized personnel?">
  173.     <option value="Yes">Yes</option>
  174.     <option value="No">No</option>
  175.     <option value="NA">NA</option>
  176.     </cfselect></td>
  177.   </tr>
  178.   <tr>
  179.     <td valign="top"><strong>Have all authorized personnel received training on handling and use of hazardous substances?</strong></td>
  180.     <td colspan="3">
  181. <cfselect name="authorized_personnel" size="2" required="yes" message="Has the project been approved by the IBC committee?">
  182.     <option value="Yes">Yes</option>
  183.     <option value="No">No</option>
  184.     <option value="Pending">Pending</option>
  185.     </cfselect>    </td>
  186.   </tr>
  187.   <tr>
  188.     <td valign="top"><strong>Is this project subject to review by the IBC committee?
  189.      
  190.      
  191.      
  192.     </strong></td>
  193.     <td width="178" valign="top"><strong>
  194.       <cfselect name="cbo_ibc" size="3" required="yes" message="Has the project been approved by the IBC committee?">
  195.       <option value="Yes">Yes</option>
  196.       <option value="No">No</option>
  197.       </cfselect>
  198.     </strong></td>
  199.     <td width="122" valign="top"><strong>If yes, has approval been received?</strong></td>
  200.     <td width="219" valign="top"><cfselect name="cbo_ibc_app" size="2" required="no">
  201.     <option value="Yes">Yes</option>
  202.     <option value="No">No</option>
  203.     <option value="Pending">Pending</option>
  204.    
  205.     </cfselect></td>
  206.   </tr>
  207.   <tr>
  208.     <td valign="top"><strong>Is this project subject to review by the IACUC committee?</strong></td>
  209.     <td valign="top"><cfselect name="cbo_iacuc" size="3" required="yes" message="Has the project been approved by the IACUC committee?">
  210.     <option value="Yes">Yes</option>
  211.     <option value="No">No</option>
  212.     <option value="NA">NA</option>
  213.    
  214.     </cfselect></td>
  215.     <td valign="top"><strong>If yes, has approval been received?</strong></td>
  216.     <td valign="top"><cfselect name="cbo_iacuc_app" size="2" >
  217.     <option value="Yes">Yes</option>
  218.     <option value="No">No</option>
  219.      <option value="Pending">Pending</option>
  220.     </cfselect></td>
  221.   </tr>
  222.   <tr>
  223.     <td valign="top"><strong>Has the SRL Usage Request Form been submitted?</strong></td>
  224.     <td colspan="3" valign="top"><cfselect name="cbo_srl" size="3" required="yes" message="Has the SRL Usage Request Form been submitted?">
  225.     <option value="Yes">Yes</option>
  226.     <option value="No">No</option>
  227.      <option value="Submitted with this form">Submitted with this form</option>
  228.    
  229.     </cfselect></td>
  230.   </tr>
  231. </table>
  232. <!--- Use the randomly generated text string for the CAPTCHA image. --->
  233. <p>
  234.  
  235. <cfimage action="captcha" fontSize="24" fonts="Times New Roman" width="350" height="50"
  236.    text="#rndString#">
  237. <p>P<strong>lease type what you see. Password is case sensitive. <br />
  238.   Spaces between the letters are not required.:</strong> </p>
  239. <p><cfinput type="text" name="userInput" required="yes" maxlength=6 message="Password is required.">
  240. <cfinput type="hidden" name="hashVal" value="#rndHash#">
  241. <p>
  242.   <input type="Submit" value="Submit" name="Submit" /><input type="reset" value="Reset">
  243. </p>
  244.  
  245.  
  246. <!--- Check for the existance of this parameter.  If it exists, then this form is   --->
  247. <!--- being submitted from index.html, which is the main menu                       --->
  248. <!--- Allow them to have only the "Main Menu" button that will return them  --->
  249. <!--- to index.html.                                                           
  250. <cfif isdefined("URL.pv_user")>
  251. <input name="btn_index_main" type="button" value="Main Menu" onclick="location.href='../ar_vims_index.html'" />
  252. <cfelse>--->
  253.  <!--- Passing this url to dras_index.cfm prevents the user from having --->
  254. <!--- to log back in.  Allows the user to bypass validation.            --->
  255.   <input name="btn_index" type="button" value="Main Menu" onclick="location.href='../ar_vims_index.html?pv_user2=2'"/>
  256. <!---
  257. </cfif>--->
  258. </p>
  259. </cfform>
  260.         Updated April 30, 2010<br />        </td>
  261.         </tr>
  262.     </table>    </td>
  263.     <td width="13">&nbsp;</td>
  264.     <td width="4">&nbsp;</td>
  265.   </tr>
  266.  
  267.     <tr bgcolor="#ffffff">
  268.     <td colspan="6"><img src="file:///C|/Inetpub/wwwroot/web_pages/advisory_services/mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
  269.     </tr>
  270.  
  271.     <tr>
  272.     <td width="15">&nbsp;</td>
  273.     <td width="29">&nbsp;</td>
  274.     <td width="50">&nbsp;</td>
  275.     <td width="775">&nbsp;</td>
  276.     <td width="13">&nbsp;</td>
  277.     <td width="4">&nbsp;</td>
  278.   </tr>
  279. </table>
  280. </body>
  281. </html>
  282.  
  283. Action form, qry_submit_usage_request.cfm
  284. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  285. <html xmlns="http://www.w3.org/1999/xhtml">
  286. <!-- DW6 -->
  287. <head>
  288. <!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
  289. <title>Seawater Research Laboratory: Toxiclogy/Carcinogen Exposure Laboratory Usage Request Form</title>
  290. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  291. <link rel="stylesheet" href="../mm_lodging1.css" type="text/css" />
  292. <style type="text/css">
  293. <!--
  294. .style2 {color: #CC3300}
  295. .style3 {color: #183a53}
  296. .style4 {
  297.     color: #000000;
  298.     font-weight: bold;
  299. }
  300. .style5 {color: #183A53}
  301. .style6 {color: #000000}
  302. .style7 {color: #FF0000}
  303. -->
  304. </style>
  305. </head>
  306. <body bgcolor="#183a53">
  307.  
  308.  
  309. <!---Get the submitter's name to display in the confirmation message
  310. <cfquery name="filter_pi" datasource="OSP">
  311.  SELECT pi_id, rtrim(principal_investigator.PI_fname) & ' ' & rtrim(principal_investigator.PI_lname) as thename,
  312.  pi_email
  313.  FROM principal_investigator
  314.  WHERE principal_investigator.pi_status in ('Y','A')
  315.  and pi_id = #form.cbo_submitter#;
  316. </cfquery>
  317.  --->
  318. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  319.     <tr>
  320.     <td width="15" nowrap="nowrap"><img src="../mm_spacer.gif" alt="" width="15" height="1" border="0" /></td>
  321.     <td height="60" colspan="3" class="logo" nowrap="nowrap"><br />
  322.     SEAWATER LABORATORY</td>
  323.     <td width="4">&nbsp;</td>
  324.     <td width="154">&nbsp;</td>
  325.   </tr>
  326.  
  327.     <tr bgcolor="#ffffff">
  328.     <td colspan="6"><img  src="../mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
  329.     </tr>
  330.  
  331.     <tr bgcolor="#c4c4c6">
  332.     <td width="15" nowrap="nowrap">&nbsp;</td>
  333.     <td height="19" colspan="3" id="navigation" class="navText">&nbsp;&nbsp;&nbsp;</td>
  334.     <td width="4">&nbsp;</td>
  335.     <td width="154">&nbsp;</td>
  336.   </tr>
  337.  
  338.     <tr bgcolor="#ffffff">
  339.     <td colspan="6"><img  src="../mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
  340.     </tr>
  341.  
  342.     <tr bgcolor="#ffffff">
  343.     <td colspan="2" valign="top" bgcolor="#FFFFFF"><table border="0" cellspacing="0" cellpadding="0" width="15">
  344.         <tr>
  345.         <td width="15">&nbsp;</td>
  346.         </tr>
  347.     </table>    </td>
  348.     <td width="50" valign="top"><img  src="../mm_spacer.gif" alt="" width="50" height="1" border="0" /></td>
  349.     <td width="532" valign="top"><br />
  350.     <br />
  351.     <table border="0" cellspacing="0" cellpadding="0" width="440">
  352.         <tr>
  353.         <td class="pageName"><p>&nbsp;</p></td>
  354.         </tr>
  355.  
  356.         <tr>
  357.         <td class="bodyText">
  358.  
  359. <cfform>
  360. <!--- Verify whether the text entered by the user matches the CAPTCHA string. --->
  361. <cfif #form.hashval# eq Hash(#form.userInput#)>
  362.  
  363. <!--- Message to display to the user on form submittal --->
  364. <p><strong><span class="style5">Thank you,</span> <cfoutput><span class="style2">#form.submitter#</span></cfoutput><span class="style5">.</span><br />
  365.     <span class="style5">Your &quot;Toxicology/Carcinogen Exposure Laboratory Usage Request Form&quot; has been submitted.</span></strong> <span class="style5"><strong>You will be emailed a copy of the submitted form</strong> <strong>to keep for your records. You may also wish to print or save this report to your PC by using the options on your browser's toolbar.</strong></span><br />
  366.     </p>
  367.  
  368.  <table width="505" >
  369.    <tr>
  370.      <th colspan="2" scope="col" bgcolor="#81a0be"><span class="style6">Toxicology/Carcinogen Exposure Laboratory Usage Request Form</span></th>
  371.      </tr>
  372.    <tr>
  373.      <td colspan="2" bgcolor=""><strong>Submitter:</strong> <cfoutput><span class="style2">#form.submitter#</span></cfoutput> </td>
  374.      </tr>
  375.    <tr>
  376.      <td colspan="2"><strong>Principal Investigator(s): </strong><cfoutput><span class="style2">#form.pi1#, #form.pi2#, #form.pi3#</span></cfoutput></td>
  377.    </tr>
  378.    <tr>
  379.      <td colspan="2"><strong>Project Description:</strong><cfoutput><span class="style2"> #form.project_description#</span></cfoutput></td>
  380.      </tr>
  381.    <tr>
  382.      <td><strong>Toxin(s) to be used</strong><cfoutput><span class="style2">: </span></cfoutput></td>
  383.      <td><cfoutput><span class="style2">#form.toxins#</span></cfoutput></td>
  384.    </tr>
  385.    <tr>
  386.      <td><strong>Quantities of toxins to be used:</strong><cfoutput></cfoutput></td>
  387.      <td><cfoutput><span class="style2">#form.qty_toxins#</span></cfoutput></td>
  388.    </tr>
  389.    <tr>
  390.      <td><span class="style4">Known exposure symptons in humans: </span><cfoutput></cfoutput></td>
  391.      <td><cfoutput><span class="style2">#form.exposure_symptoms#</span></cfoutput></td>
  392.    </tr>
  393.    <tr>
  394.      <td><span class="style4">Method of Exposure :</span><cfoutput></cfoutput></td>
  395.      <td><cfoutput><span class="style2">#form.exposure_method#</span></cfoutput></td>
  396.    </tr>
  397.    <tr>
  398.      <td><span class="style4">Method of decontamination: </span><cfoutput></cfoutput></td>
  399.      <td><cfoutput><span class="style2">#form.method_decontamination#</span></cfoutput></td>
  400.    </tr>
  401.    <tr>
  402.      <td width="229"><span class="style4">Decontamination media:</span><cfoutput></cfoutput></td>
  403.      <td width="193"><cfoutput><span class="style2">#form.decontamination_media#</span></cfoutput></td>
  404.    </tr>
  405.    <tr>
  406.      <td><span class="style4">Is the appropriate safety equipment available or has it been ordered for all authorized personnel?</span></td>
  407.      <td valign="top"><cfoutput><span class="style2">#form.cbo_personnel#</span></cfoutput></td>
  408.    </tr>
  409.    <tr>
  410.      <td><span class="style4">Have all authorized personnel received training on handling and use of hazardous substances?</span></td>
  411.      <td valign="top"><cfoutput><span class="style2">#form.authorized_personnel#</span></cfoutput></td>
  412.    </tr>
  413.    <tr>
  414.      <td><span class="style4">Is this project subject to review by the IBC committee?</span></td>
  415.      <td><cfoutput><span class="style2">#form.cbo_ibc#</span></cfoutput></td>
  416.    </tr>
  417.    <tr>
  418.      <td><span class="style4">If yes, has approval been received?</span></td>
  419.      <td><cfoutput><span class="style2">#form.cbo_ibc_app#</span></cfoutput></td>
  420.    </tr>
  421.    <tr>
  422.      <td><span class="style4">Is this project subject to review by the IACUC committee?</span></td>
  423.      <td><cfoutput><span class="style2">#form.cbo_iacuc#</span></cfoutput></td>
  424.    </tr>
  425.    <tr>
  426.      <td><span class="style4">If yes, has approval been received?</span></td>
  427.      <td><cfoutput><span class="style2">#form.cbo_iacuc_app#</span></cfoutput></td>
  428.    </tr>
  429.    <tr>
  430.      <td><span class="style4">Has the SRL Usage Request Form been submitted?</span></td>
  431.      <td><cfoutput><span class="style2">#form.cbo_srl#</span></cfoutput></td>
  432.    </tr>
  433.    <tr>
  434.      <td>&nbsp;</td>
  435.      <td>&nbsp;</td>
  436.    </tr>
  437.  </table>
  438.  <p>  </p>
  439.    <a href="http://www.vims.edu/about/facilities/seawaterlab/index.php" class="style3">Back to Seawater Research Lab </a></p>
  440.    <cfelse>
  441.     <p class="style7">Sorry, the code you entered was incorrect. User your browser's &quot;Back&quot; button and try again.</p>
  442. </cfif>
  443.  </cfform>
  444.         <br />      </td>
  445.         </tr>
  446.     </table>    </td>
  447.     <td width="4">&nbsp;</td>
  448.     <td width="154">&nbsp;</td>
  449.   </tr>
  450.  
  451.     <tr bgcolor="#ffffff">
  452.     <td colspan="6"><img  src="../mm_spacer.gif" alt="" width="1" height="1" border="0" /></td>
  453.     </tr>
  454.  
  455.     <tr>
  456.     <td width="15">&nbsp;</td>
  457.     <td width="73">&nbsp;</td>
  458.     <td width="50">&nbsp;</td>
  459.     <td width="532">&nbsp;</td>
  460.     <td width="4">&nbsp;</td>
  461.     <td width="154">&nbsp;</td>
  462.   </tr>
  463. </table>
  464. </body>
  465. </html>
  466.  
  467. <!--- Define veriables that can be used to display values   --->
  468. <!--- within the email messages.                           
  469. <cfset pv_name = filter_pi.thename>
  470. <cfset pv_email = filter_pi.pi_email>--->
  471.  
  472.  
  473. <!---Email to DRAS staff
  474. <cfmail from="#form.submitter_email#" to="jxxxx@vims.edu, jxxxxx@vims.edu, #pv_email#"  subject="SRL - Toxicology/Carcinogen Exposure Laboratory Usage Request Form" type="html">--->
  475.  
  476. <!--- Verify whether the text entered by the user matches the CAPTCHA string. --->
  477. <cfif #form.hashval# eq Hash(#form.userInput#)>
  478. <cfmail from="#form.submitter_email#" to="jxxxx@vims.edu, #form.submitter_email#"  subject="SRL - Toxicology/Carcinogen Exposure Laboratory Usage Request Form" type="html">
  479. <table width="834" >
  480. <tr>
  481.      <th colspan="2" scope="col" ><span class="style6">Toxicology/Carcinogen Exposure Laboratory Usage Request Form</span></th>
  482.      </tr>
  483.    <tr>
  484.      <td colspan="2" bgcolor=""><strong>Submitter:</strong> <cfoutput><span class="style2">#form.submitter#</span></cfoutput> </td>
  485.      </tr>
  486.    <tr>
  487.      <td colspan="2"><strong>Principal Investigator(s): </strong><cfoutput><span class="style2">#form.pi1#, #form.pi2#, #form.pi3#</span></cfoutput></td>
  488.    </tr>
  489.    <tr>
  490.      <td colspan="2"><strong>Project Description:</strong><cfoutput><span class="style2"> #form.project_description#</span></cfoutput></td>
  491.      </tr>
  492.    <tr>
  493.      <td><strong>Toxin(s) to be used</strong><cfoutput><span class="style2">: </span></cfoutput></td>
  494.      <td><cfoutput><span class="style2">#form.toxins#</span></cfoutput></td>
  495.    </tr>
  496.    <tr>
  497.      <td><strong>Quantities of toxins to be used:</strong></td>
  498.      <td><cfoutput><span class="style2">#form.qty_toxins#</span></cfoutput></td>
  499.    </tr>
  500.    <tr>
  501.      <td><strong>Known exposure symptons in humans: </strong></td>
  502.      <td><cfoutput><span class="style2">#form.exposure_symptoms#</span></cfoutput></td>
  503.    </tr>
  504.    <tr>
  505.      <td><strong>Method of Exposure :</strong></td>
  506.      <td><cfoutput><span class="style2">#form.exposure_method#</span></cfoutput></td>
  507.    </tr>
  508.    <tr>
  509.      <td><strong>Method of decontamination: </strong></td>
  510.      <td><cfoutput><span class="style2">#form.method_decontamination#</span></cfoutput></td>
  511.    </tr>
  512.    <tr>
  513.      <td width="322"><strong>Decontamination media:</strong></td>
  514.      <td width="209"><cfoutput><span class="style2">#form.decontamination_media#</span></cfoutput></td>
  515.   </tr>
  516.    <tr>
  517.      <td><strong>Is the appropriate safety equipment available or has it been ordered for all authorized personnel?</strong></td>
  518.      <td valign="top"><cfoutput>#form.cbo_personnel#</cfoutput></td>
  519.    </tr>
  520.    <tr>
  521.      <td><strong>Have all authorized personnel received training on handling and use of hazardous substances?</strong></td>
  522.      <td valign="top"><cfoutput>#form.authorized_personnel#</cfoutput></td>
  523.    </tr>
  524.    <tr>
  525.      <td><strong>Is this project subject to review by the IBC committee?</strong></td>
  526.      <td><cfoutput><span class="style2">#form.cbo_ibc#</span></cfoutput></td>
  527.    </tr>
  528.    <tr>
  529.      <td><strong>If yes, has approval been received?</strong></td>
  530.      <td><cfoutput>#form.cbo_ibc_app#</cfoutput></td>
  531.    </tr>
  532.    <tr>
  533.      <td><strong>Is this project subject to review by the IACUC committee?</strong></td>
  534.      <td><cfoutput>#form.cbo_iacuc#</strong></cfoutput></td>
  535.      <td width="142"><strong>If yes, has approval been received?</strong></td>
  536.      <td width="141"><cfoutput>#form.cbo_iacuc_app#</cfoutput></td>
  537.   </tr>
  538.    <tr>
  539.      <td><strong>If yes, has approval been received?</strong></td>
  540.      <td><cfoutput>#form.cbo_iacuc_app#</cfoutput></td>
  541.    </tr>
  542.    <tr>
  543.      <td><strong>Has the SRL Usage Request Form been submitted?</strong></td>
  544.      <td><cfoutput>#form.cbo_srl#</cfoutput></td>
  545.    </tr>
  546.    <tr>
  547.      <td>&nbsp;</td>
  548.      <td>&nbsp;</td>
  549.    </tr>
  550.  </table>
  551.  
  552. </cfmail>
  553. <!--- if the has value doesn't match, then don't send email.--->
  554. </cfif>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement