function BuildTopNav()
{
	document.writeln('<div id="TopNavContainer">');
	document.writeln('	<div class="frame-inner">');
	document.writeln('		<a href="index.html">Home</a>');
	document.writeln('		|');	
	document.writeln('		<a href="aboutus.html">About Us</a>');
	document.writeln('		|');
	document.writeln('		<a href="emailus.html">Contact Us</a>');
	document.writeln('		|');
	document.writeln('		<a href="privacy.html">Privacy Policy</a>');
	document.writeln('	</div>');
	document.writeln('</div>');
	return true;
}

function BuildMastHead()
{
	document.writeln('<div id="MastHead" class="frame-top">');
	document.writeln('	<div class="frame-inner">');
	document.writeln('		<div id="MainLogo">');
	document.writeln('			<a href="index.html"><img src="images/mainlogo.png" alt="Ansor-Casto : Home" /></a>');
	document.writeln('		</div>');
	document.writeln('		<div id="MainNav">');
	document.writeln('			<a id="MainNav-Corporate" href="corporate.html">Corporate</a>');
	document.writeln('			<a id="MainNav-Leisure" href="leisure.html">Leisure</a>');
	document.writeln('			<a id="MainNav-Meetings" href="meetings.html">Meetings &amp; Incentives</a>');
	document.writeln('			<a id="MainNav-Fulfillement" href="fulfillment.html">Travel Fulfillment</a>');
	document.writeln('			<a id="MainNav-Promotions" href="promotions.html">Promotions</a>');
	document.writeln('			<a id="MainNav-Documents" href="documents.html">Documents</a>');
	document.writeln('		</div>');
	document.writeln('	</div>');
	document.writeln('</div>');
	return true;
}

function BuildBanner(pageid, text)
{
	document.writeln('<div id="BannerContainer" class="frame-middle">');
	document.writeln('	<div class="frame-inner" style="background-image:url(\'images/banners/' + pageid + '.jpg\');">');
	document.writeln('		<div id="BannerFrame">');
	document.writeln('			<div id="BannerTitle" style="background-image:url(\'images/bannerframe/top-' + pageid + '.png\') !important; background:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'images/bannerframe/top-' + pageid + '.png\', sizingMethod=\'crop\');">');
	document.writeln('				<div id="BannerContent" >');
	document.writeln('					<div style="float:right; position:relative; width:320px; padding:40px 70px; line-height:200%;">');
	document.writeln('						' + text);
	document.writeln('					</div>');
	document.writeln('				</div>');
	document.writeln('			</div>');
	document.writeln('		</div>');	
	document.writeln('	</div>');
	document.writeln('</div>');
	return true;
}

function BuildFooter()
{
	document.writeln('<div id="FooterContainer" class="frame-bottom">');
	document.writeln('	<div class="frame-inner" style="text-align: center;">');
	document.writeln('		Copyright &copy; 2007 Anscor Casto');	
	document.writeln('	</div>');
	document.writeln('</div>');
	return true;
}
