Current File : /home/inlingua/www/icentex/procedures/procedures_documents.php
<?php
include("header_procedure.php");
// Include the database connection details
require('../dbConnection.php');

// Include common functions
require('../commonFunc.php');

// Include common functions
require('../globalVars.php');

// Include the table handler class
require('../dbHandler.class.php');

if($_REQUEST['document']=="Grievance")
{
$forms="Grievance Procedures";
$file1="procedures_documents_download.php?file=Grievance_Procedure.pdf";
//$file1="#";
$link1="Grievance Procedures<br>Download";
//$file2="tutorials_documents_download.php?file=Presentation1.ppt";
}
else if($_REQUEST['document']=="Discipliniary")
{
$forms="Disciplinary Procedures";
//$file1="#";
$file1="procedures_documents_download.php?file=Disciplinary_Procedure.pdf";
$link1="Disciplinary Procedures<br>Download";
//$file2="tutorials_documents_download.php?file=Presentation1.ppt";
}
else if($_REQUEST['document']=="Faq")
{
$forms="FAQs";
$file1="#";
$link1="FAQs<br>Download ";
//$file2="tutorials_documents_download.php?file=Presentation1.ppt";
}

?>
<h2><?php echo $forms; ?></h2>



<table align="center" cellpadding="3" cellspacing="3" width="99%" id="adform">
					<tbody>
<?php
if($_REQUEST['document']!="forms")
{
?>					
					
	<tr >
	<td width="40" style="border:#E6E6E6 1px solid;"><a   class="hlink"  href="<?php echo $file1;?>" title="<?php echo $_REQUEST['document']; ?>">	<img class="divimglink" height="40" src="../images/download_8.gif" alt="" border="0"></a></td>
	<td style="border:#E6E6E6 1px solid;" valign="top"><b><a href='<?php echo $file1;?>'><?php echo $link1; ?></a></b></td>
	</tr>
	<tr><td colspan="2">&nbsp;</td></tr>
	<!--<tr >
	<td width="40" style="border:#E6E6E6 1px solid;"><a   class="hlink"  href="tutorials_documents.php?document=timesheet" title="Timesheet">	<img class="divimglink" height="40" src="images/download_8.gif" alt="" border="0"></a></td>
	<td style="border:#E6E6E6 1px solid;" valign="top"><b>Download Instructions</b></td>
	</tr>-->
	<?php
	}
	else
	{
	?>
	
	
	
	<?php
	
	}
	?>
	</tbody></table>

<?php
include("footer_procedure.php");
?>