// JavaScript Document

function header()
{
document.writeln('<div style="background:url(images/header_bg.gif) repeat-x; width:100%;">');
document.writeln('<div class="floatLeft">');
document.writeln('<a href="index.html" name="Infopark - Home" title="Infopark - Home">');
document.writeln('<img src="images/infopark_logo.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('</div>');
document.writeln('<div class="floatLeft">');
document.writeln('<img src="images/infopark_title.gif" />');
document.writeln('</div>');
document.writeln('<div class="floatRight">');
document.writeln('<img src="images/header_photo.gif" />');
document.writeln('</div>');
document.writeln('<div class="clearBoth"></div>');
document.writeln('</div>');
document.writeln('<div class="spacer">');
document.writeln('</div>');
}


function infoparkMenu()
{
document.writeln('<table width="100%" align="center" cellpadding="0" cellspacing="0" background="images/menu_bg.gif">');
document.writeln('<tr>');
document.writeln('<td align="center">');
document.writeln('<table width="80%" align="center" cellpadding="0" cellspacing="0">');
document.writeln('<tr align="center">');
document.writeln('<td>');
document.writeln('<a href="index.html" title="Infopark - Home">');
document.writeln('<img src="images/button_home.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('</td>');
document.writeln('<td valign="top">');
document.writeln('<img src="images/menu_divider.gif" class="imgbrd" />');
document.writeln('</td>');
document.writeln('<td>');
document.writeln('<a href="aboutUs.html" title="Infopark - About Us">');
document.writeln('<img src="images/button_about.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('</td>');
document.writeln('<td valign="top">');
document.writeln('<img src="images/menu_divider.gif" class="imgbrd" />');
document.writeln('</td>');
document.writeln('<td valign="top">');
document.writeln('<ul id="nav" class="dropdown dropdown-horizontal">');
document.writeln('<li class="dir">');
document.writeln('<a href="services.html">');
document.writeln('<img src="images/button_services.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('<ul style="text-align:left;">');
document.writeln('<li><a href="SwDevelopment.html">S/W Development</a></li>');
document.writeln('<li><a href="network-Services.html">Network Services</a></li>');
document.writeln('<li><a href="embedded-Services.html">Embedded Services</a></li>');
document.writeln('<li><a href="e-services.html">E - A/C Fin Services</a></li>');
document.writeln('</ul>');
document.writeln('</li>');
document.writeln('</ul>');
document.writeln('</td>');
document.writeln('<td valign="top">');
document.writeln('<img src="images/menu_divider.gif" class="imgbrd" />');
document.writeln('</td>');
document.writeln('<td>');
document.writeln('<a href="career.html" title="Infopark - Careers">');
document.writeln('<img src="images/button_career.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('</td>');
document.writeln('<td valign="top">');
document.writeln('<img src="images/menu_divider.gif" class="imgbrd" />');
document.writeln('</td>');
document.writeln('<td>');
document.writeln('<a href="contactUs.html" title="Contact - Infopark">');
document.writeln('<img src="images/button_contact.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('</td>');
document.writeln('<td valign="top">');
document.writeln('<img src="images/menu_divider.gif" class="imgbrd" />');
document.writeln('</td>');
document.writeln('<td>');
document.writeln('<a href="academic-Projects.html" title="Academic Projects - Infopark">');
document.writeln('<img src="images/button_projects.gif" class="imgbrd" />');
document.writeln('</a>');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>');
}

function infoparkFooter()
{
document.writeln('<table width="100%" align="center" cellpadding="0" cellspacing="0" background="images/footer_bg.gif">');
document.writeln('<tr>');
document.writeln('<td align="center">');
document.writeln('<a href="index.html" title="Infopark - Home">Home</a> - ');
document.writeln('<a href="aboutUs.html" title="Infopark - About Us">About us</a> - ');
document.writeln('<a href="services.html" title="Infopark - Services">Services</a> - ');
document.writeln('<a href="career.html" title="Infopark - Careers">Careers</a> - ');
document.writeln('<a href="contactUs.html" title="Contact - Infopark">Contact Us</a> -');
document.writeln('<a href="academic-Projects.html" title="Academic Projects - Infopark">Academic Projects</a><br />');
document.writeln('Copyright © 1999-2008 All rights reserved by InfoPark Software Technologies.');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>');
}		


