//Functions and more...

function displayTopImg() {
	document.write('<img');
	document.write(' src="img/eagle_top_img.jpg"');
	document.write(' alt="Accurate Meezan Trading LLC"');
	document.write('>');
}

function displayNavBar(sDestinationPage) {
	sMenuOn = "menuOn";
	sMenuOff = "menuOff";
	sTdOpen = '		<td class="navBarCell">';
	sTdClose = '		</td>';
	sClsHome = sMenuOn;
	sClsProfile = sMenuOn;
	sClsProducts = sMenuOn;
	sClsQuality = sMenuOn;
	sClsContact = sMenuOn;
	if (sDestinationPage == "home")
		sClsHome = sMenuOff;
	if (sDestinationPage == "profile")
		sClsProfile = sMenuOff;
	if (sDestinationPage == "products")
		sClsProducts = sMenuOff;
	if (sDestinationPage == "quality")
		sClsQuality = sMenuOff;
	if (sDestinationPage == "contact")
		sClsContact = sMenuOff;
	document.write('<table class="navBar" cellspacing="0" cellpadding="0">');
	document.write("	<tr>");
	document.write(sTdOpen);
	document.write('		<a href="default.html" class="' + sClsHome + '">Home</a>');
	document.write(sTdClose);
//	document.write(sTdOpen);
//	document.write('		<!--a href="profile.html" class="' + sClsProfile + '"-->Company Profile<!--/a-->');
//	document.write(sTdClose);
	document.write(sTdOpen);
	document.write('		<a href="products.html" class="' + sClsProducts + '">Products</a>');
	document.write(sTdClose);
	document.write(sTdOpen);
	document.write('		<a href="quality.html" class="' + sClsQuality + '">Quality Policy</a>');
	document.write(sTdClose);
	document.write(sTdOpen);
	document.write('		<a href="contact.html" class="' + sClsContact + '">Contact Us</a>');
	document.write(sTdClose);
	document.write("	</tr>");
	document.write("</table>");
}
function displayLogos(sPageTitle) {
	document.write('<td height="45">');
	document.write('	<table border="0" width="100%" cellpadding="4" cellspacing="0">');
	document.write('		<tr>');
	document.write('			<td width="128" align="center" valign="middle">');
	document.write('				<img src="img/Logo_eagle.gif" width="128" height="40" alt="">');
	document.write('			</td>');
	document.write('			<td align="center" valign="middle" class="pgHeader">');
	document.write('				' + sPageTitle);
	document.write('			</td>');
	document.write('			<td width="128" align="center">');
	document.write('				<img src="img/Logo_eagle_boq.gif" width="84" height="45" alt="">');
	document.write('			</td>');
	document.write('		</tr>');
	document.write('	</table>');
	document.write('</td>');
}
function displayProductList(sPageType) {
	/*If the form tag is kept INSIDE the td tag, then a break is added
			to the table cell!!*/
	/*document.write('<form name="fList">');*/
	document.write('<select name="prodList" ');
	/* On product page display the list in smaller font */
	if (sPageType == "product")
		document.write(' class="prodList" ');
	document.write('	onchange="location=document.fList.prodList.options[document.fList.prodList.selectedIndex].value">');
	if (sPageType == "product")
		document.write('	<option selected >Choose another product</option>');
	else
		document.write('	<option selected >Choose a product</option>');
	document.write('	<option value="p01highprec.html">High Precision Weighing Scale</option>');
	document.write('	<option value="p02jewellery.html">Jewellery Weighing Scale</option>');
	document.write('	<option value="p03pocket.html">Pocket Scale</option>');
	document.write('	<option value="p04economy.html">Economy Weighing Scale</option>');
	document.write('	<option value="p05mini.html">Mini Scale</option>');
	document.write('	<option value="p06tabletop.html">Tabletop Weighing Scale</option>');
	document.write('	<option value="p07dlxtabletop.html">Deluxe Tabletop Weighing Scale</option>');
	document.write('	<option value="p08pricecomp.html">Price Computing Scale</option>');
	document.write('	<option value="p09precision.html">Precision Weighing Scale</option>');
	document.write('	<option value="p10counting.html">Counting Scales</option>');
	document.write('	<option value="p11postal.html">Postal Scales</option>');
	document.write('	<option value="p12bench.html">Bench Weighing Scale</option>');
	document.write('	<option value="p17miniplat.html">Mini Platform Weighing Scale</option>');
	document.write('	<option value="p13platform.html">Platform Weighing Scale</option>');
	document.write('	<option value="p14crane.html">Crane Weighing Scale</option>');
	document.write('	<option value="p15convkits.html">Conversion Kits</option>');
	document.write('	<option value="p16indicators.html">Indicators</option>');
	document.write('	<option value="p18personal.html">Personal Weighing Scale</option>');
	document.write('	<option value="p19loadcell.html">Load cells</option>');
	document.write('</select>');
	/*document.write('</form>');*/
}
function displayManual(sViewFile, sSaveFile, sSize) {
	document.write('<div class="prodOpts">Manual (' + sSize + '):');
	document.write('	<a href="' + sViewFile + '">View</a> |');
	document.write('	<a href="' + sSaveFile + '">Save</a>');
	document.write('</div>');
}
function displayAddress() {
	document.write("<p>");
	document.write('Accurate Meezan Trading LLC,');
	document.write("<br>");
	document.write('No.5, Plot No. 613-1124, Ras Al Khor Industrial Area II, Aweer, Dubai, U.A.E.');
	document.write("<br>");
	document.write('Phone: +971 (4) 3337 789/790, Fax: +971 (4) 3336 210, Email: info@accuratemeezan.com');
	document.write("</p>");
}

