<!--
document.write('<form name="formname" method="post" action="/getInformation.asp">');
document.write('<input name="pdflocation" type="hidden">');
document.write('<input name="pagereferer" type="hidden">');
document.write('<input name="manualname"  type="hidden" >');
document.write('</form>');


function redirectPage(_folder, _manualname, _manualtitle)

{
    var host= location.protocol+'//'+location.host;
    //    document.formname.pdflocation.value = host + "/imaging/manuals/058700man.pdf";
    document.formname.pdflocation.value = host + _folder + "/" + _manualname;
    document.formname.pagereferer.value = location;
    document.formname.manualname.value = _manualtitle;
    document.formname.submit();
} 

//--> 
