function render_guideline(mode) {  // all, sm, cr, co
    switch (mode)
{
    case "all":
        document.write('<ul>'+
        '       <li><b>Initial Submission Guidelines</b>: <a href="http://icst.org/registration/ASSYST_InitialSubmission.pdf">DOWNLOAD PDF</a></li>'+
        '       <li><b>Camera-Ready Guidelines</b>: <a href="http://icst.org/registration/ASSYST_CameraReady.pdf">DOWNLOAD PDF</a></li>'+
        '       <li><b>ASSYST User Guide for the Organizing Committee</b>: <a href="http://icst.org/registration/ASSYST_UserGuide.pdf">DOWNLOAD PDF</a></li>'+
        '</ul>'+
        '<br />'+
        '&nbsp;&nbsp;<span>Should you have any questions please contact us at <a href="mailto:assyst@icst.org">assyst@icst.org</a></span>'
        )
      break
    case "sm":
     document.write('<b>Submission Guidelines</b>: <a href="http://icst.org/registration/ASSYST_InitialSubmission.pdf">Download</a>')
      break
    case "cr":
      document.write('<b>Camera-Ready Guidelines</b>: <a href="http://icst.org/registration/ASSYST_CameraReady.pdf">Download</a>')
      break
    case "co":
      document.write('<b>ASSYST User Guide for the Organizing Committee</b>: <a href="http://icst.org/registration/ASSYST_UserGuide.pdf">Download</a>')
      break
    }
    
}