<!--

function showImage(imageName,width,height) {
	onewindow=window.open('','_blank','resizable=no,scrollbars=0,marginheight=0,marginweight=0,toolbar=no,width=' + width + ',height=' + height );
	onewindow.document.open();	
	onewindow.document.write(

			'<html>' +
			'<head>' +
			'<title>&nbsp;</title>' +
			'<link rel="stylesheet" href="/common.css" type="text/css">' +
			'</head>' +
			'<body  topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">' +
				'<img src="' + imageName + '" width="' + width + '" height="' + height + '" alt="" border="0"><br>' +
			'</body>' +
			'</html>'
	);
	onewindow.document.close();
	onewindow.focus();
}





var menuImages = new Array(
	new menuImage("menu_home","images/shell/menu_home-over.gif","images/shell/menu_home-out.gif"),
	new menuImage("menu_about","images/shell/menu_about-over.gif","images/shell/menu_about-out.gif"),
	new menuImage("menu_portfolio","images/shell/menu_portfolio-over.gif","images/shell/menu_portfolio-out.gif"),
	new menuImage("menu_gallery","images/shell/menu_gallery-over.gif","images/shell/menu_gallery-out.gif"),
	new menuImage("menu_contact","images/shell/menu_contact-over.gif","images/shell/menu_contact-out.gif")
);

function getImageByName(imageName) {
	for(i=0;menuImages.length;i++) {
		if(menuImages[i].imageName==imageName) {
			return menuImages[i];
		}
	}
}

function menuImage(imageName,over,out) {
	this.imageName = imageName;
	this.overImage = new Image();
	this.overImage.src = over;
	this.outImage = new Image();
	this.outImage.src= out;
}

function changeImagesOver(imageName) {
	document[imageName].src = getImageByName(imageName).overImage.src;
}

function changeImagesOut(imageName) {
	document[imageName].src = getImageByName(imageName).outImage.src;
}


function insertHeader(){

document.write('<body bgcolor=#AEAEAE leftmargin=0 topmargin=0 rightmargin="0" bottommargin="0" marginwidth=0 marginheight=0>' );
document.write('<table border=0 cellpadding=0 cellspacing=0>' );
document.write('	<tr>' );
document.write('		<td background="images/shell/bg_left_top.gif" style="background-position : right;">' );
document.write('			<img src="images/shell/spacer.gif" width=1 height=85 alt=""><br>' );
document.write('		</td>' );
document.write('		<td>' );
document.write('			<a href="index.html"><img src="images/shell/logo.jpg" width=194 height=85 alt="" border="0"></a><br>' );
document.write('		</td>' );
document.write('		<td background="images/shell/bg_header.gif">' );
document.write('			<table border=0 cellpadding=0 cellspacing=0 width="100%">' );
document.write('				<tr>' );
document.write('					<td>' );
document.write('						<img src="images/shell/header.jpg" width="295" height="85" alt="" border="0"><br>' );
document.write('					</td>' );
document.write('					<td align="right">' );
document.write('						<img src="images/shell/slogan.gif" width="274" height="27" alt="" border="0"><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );
document.write('		</td>' );
document.write('		<td background="images/shell/bg_header.gif">' );
document.write('			<img src="images/shell/spacer.gif" width=1 height=85 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td valign="top">' );
document.write('			<table border=0 cellpadding=0 cellspacing=0 width="100%">' );
document.write('				<tr>' );
document.write('					<td background="images/shell/bg_left_menu.jpg" style="background-position : right;">' );
document.write('						<img src="images/shell/spacer.gif" width=1 height=251 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );
document.write('		</td>' );
document.write('		<td valign="top" background="images/shell/bg_menu.gif">' );

document.write('<table width=194 border=0 cellpadding=0 cellspacing=0>' );
document.write('	<tr>' );
document.write('		<td colspan=2>' );
document.write('			<img src="images/shell/menu_top.jpg" width=194 height=105 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td rowspan=9>' );
document.write('			<img src="images/shell/menu_left.jpg" width=32 height=116 alt=""><br>' );
document.write('		</td>' );
document.write('		<td>' );
document.write('			<a href="index.html"' );
document.write('				onmouseover="changeImagesOver(\'menu_home\'); return true;"' );
document.write('				onmouseout="changeImagesOut(\'menu_home\'); return true;">' );
document.write('				<img name="menu_home" src="images/shell/menu_home.gif" width=162 height=20 border=0 alt=""></a><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<img src="images/shell/menu_sp1.gif" width=162 height=4 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<a href="about.html"' );
document.write('				onmouseover="changeImagesOver(\'menu_about\'); return true;"' );
document.write('				onmouseout="changeImagesOut(\'menu_about\'); return true;">' );
document.write('				<img name="menu_about" src="images/shell/menu_about.gif" width=162 height=20 border=0 alt=""></a><br>' );
document.write('			</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<img src="images/shell/menu_sp2.gif" width=162 height=4 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<a href="portfolio.html"' );
document.write('				onmouseover="changeImagesOver(\'menu_portfolio\'); return true;"' );
document.write('				onmouseout="changeImagesOut(\'menu_portfolio\'); return true;">' );
document.write('				<img name="menu_portfolio" src="images/shell/menu_portfolio.gif" width=162 height=20 border=0 alt=""></a><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<img src="images/shell/menu_sp3.gif" width=162 height=4 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<a href="gallery_corpid.html"' );
document.write('				onmouseover="changeImagesOver(\'menu_gallery\'); return true;"' );
document.write('				onmouseout="changeImagesOut(\'menu_gallery\'); return true;">' );
document.write('				<img name="menu_gallery" src="images/shell/menu_gallery.gif" width=162 height=20 border=0 alt=""></a><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<img src="images/shell/menu_sp4.gif" width=162 height=4 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<a href="contact.jsp"' );
document.write('				onmouseover="changeImagesOver(\'menu_contact\'); return true;"' );
document.write('				onmouseout="changeImagesOut(\'menu_contact\'); return true;">' );
document.write('				<img name="menu_contact" src="images/shell/menu_contact.gif" width=162 height=20 border=0 alt=""></a><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td colspan=2>' );
document.write('			<img src="images/shell/menu_bottom.jpg" width=194 height=35 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('</table>' );

document.write('		</td>' );
document.write('		<td rowspan=2 bgcolor=#FFFFFF valign="top">' );

document.write('			<table width=583 border=0 cellpadding=0 cellspacing=0>' );
document.write('				<tr>' );
document.write('					<td rowspan=2 valign="top" bgcolor="ffffff">' );
document.write('						<img src="images/shell/body_corn_left.gif" width=10 height=76 alt=""><br>' );
document.write('					</td>' );
document.write('					<td bgcolor="ffffff" valign="top">' );
document.write('						<img src="images/shell/body_corn_top.gif" width=563 height=10 alt=""><br>' );
document.write('					</td>' );
document.write('					<td rowspan=2 valign="top" bgcolor="ffffff">' );
document.write('						<img src="images/shell/spacer.gif" width=10 height=1 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('				<tr>' );
document.write('					<td bgcolor="ffffff">' );

}


<!--############################ begin content ############################-->


<!--############################ end content ############################-->


function insertFooter(){

document.write('						<img src="images/shell/spacer.gif" width=563 height=20 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );

document.write('		</td>' );
document.write('		<td rowspan=2 background="images/shell/bg_name.gif">' );
document.write('			<img src="images/shell/spacer.gif" width=1 height=1 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td valign="bottom">' );
document.write('			<table border=0 cellpadding=0 cellspacing=0 width="100%">' );
document.write('				<tr>' );
document.write('					<td background="images/shell/bg_left_globe.gif" style="background-position : right;">' );
document.write('						<img src="images/shell/spacer.gif" width=1 height=343 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );
document.write('		</td>' );
document.write('		<td valign="bottom" background="images/shell/bg_menu.gif">' );
document.write('			<img src="images/shell/globe.gif" width=194 height=343 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td background="images/shell/bg_left_line.gif" width="50%">' );
document.write('			<img src="images/shell/bg_left_line.gif" width=1 height=17 alt=""><br>' );
document.write('		</td>' );
document.write('		<td colspan=2>' );
document.write('			<img src="images/shell/botline.gif" width=777 height=17 alt=""><br>' );
document.write('		</td>' );
document.write('		<td background="images/shell/bg_right_line.gif" width="50%">' );
document.write('			<img src="images/shell/spacer.gif" width=1 height=17 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td rowspan=2>' );
document.write('			<img src="images/shell/spacer.gif" width=1 height=64 alt=""><br>' );
document.write('		</td>' );
document.write('		<td>' );

document.write('			<table width=194 border=0 cellpadding=0 cellspacing=0>' );
document.write('				<tr>' );
document.write('					<td rowspan=3>' );
document.write('						<img src="images/shell/nav_left.gif" width=69 height=42 alt=""><br>' );
document.write('					</td>' );
document.write('					<td colspan=5>' );
document.write('						<img src="images/shell/nav_top.gif" width=81 height=11 alt=""><br>' );
document.write('					</td>' );
document.write('					<td rowspan=3>' );
document.write('						<img src="images/shell/nav_right.gif" width=44 height=42 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('				<tr>' );
document.write('					<td>' );
document.write('						<a href="index.html"><img src="images/shell/nav_home.gif" width=26 height=15 alt="" border="0"></a><br>' );
document.write('					</td>' );
document.write('					<td bgcolor=#E9E9E9>' );
document.write('						<img src="images/shell/spacer.gif" width=2 height=15 alt=""><br>' );
document.write('					</td>' );
document.write('					<td>' );
document.write('						<a href="map.html"><img src="images/shell/nav_map.gif" width=25 height=15 alt="" border="0"></a><br>' );
document.write('					</td>' );
document.write('					<td bgcolor=#E9E9E9>' );
document.write('						<img src="images/shell/spacer.gif" width=2 height=15 alt=""><br>' );
document.write('					</td>' );
document.write('					<td>' );
document.write('						<a href="contact.jsp"><img src="images/shell/nav_feedback.gif" width=26 height=15 alt="" border="0"></a><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('				<tr>' );
document.write('					<td colspan=5>' );
document.write('						<img src="images/shell/nav_bottom.gif" width=81 height=16 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );

document.write('		</td>' );
document.write('		<td bgcolor=#FFFFFF align="center">' );
document.write('			<table border=0 cellpadding=0 cellspacing=0 width="563">' );
document.write('				<tr>' );
document.write('					<td class="small">' );
document.write('						<span class="gray">Legal information:<br>' );
document.write('						<a href="terms.html">Terms of Use</a>&nbsp;|&nbsp;<a href="privacy_policy.html">Privacy Policy</a><br>' );
document.write('						<img src="images/shell/spacer.gif" width=1 height=5 alt=""><br>' );
document.write('					</td>' );
document.write('					<td align="right" class="small">' );
document.write('						<span class="gray">Copyright &copy; 2003<br>' );
document.write('						<a href="privacy_policy.html">Marketing Orbit, LLC</a><br>' );
document.write('						<img src="images/shell/spacer.gif" width=1 height=5 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );
document.write('		</td>' );
document.write('		<td background="images/shell/bg_right_bottom.gif">' );
document.write('			<img src="images/shell/spacer.gif" width=1 height=42 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<img src="images/shell/shedow_corner.gif" width=194 height=22 alt=""><br>' );
document.write('		</td>' );
document.write('		<td colspan=2 background="images/shell/bg_shadow.gif">' );
document.write('			<img src="images/shell/bg_shadow.gif" width=1 height=22 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('</table>' );
document.write('</body>' );
document.write('</html>' );

}


function insertGalleryTop(){

document.write('<table width=563 border=0 cellpadding=0 cellspacing=0>' );
document.write('	<tr>' );
document.write('		<td>' );
document.write('			<img src="images/gallery/intshell/gallery_internal_tl.gif" width=10 height=40 alt=""><br>' );
document.write('		</td>' );
document.write('		<td>' );

}		



		
function insertGalleryTop2(){

document.write('		</td>' );
document.write('		<td>' );
document.write('			<img src="images/gallery/intshell/gallery_internal_tr.gif" width=10 height=40 alt=""><br>' );
document.write('		</td>' );
document.write('	</tr>' );
document.write('	<tr>' );
document.write('		<td background="images/gallery/intshell/gallery_internal_lshadow.gif">' );
document.write('			<img src="images/gallery/intshell/spacer.gif" width=10 height=1 alt=""><br>' );
document.write('		</td>' );
document.write('		<td bgcolor=#F7F7F7 valign="top">' );
document.write('			<table border="0" cellpadding="0" cellspacing="0">' );
document.write('				<tr>' );
document.write('					<td>' );
document.write('						<img src="images/gallery/intshell/spacer.gif" width=12 height=1 alt=""><br>' );
document.write('					</td>' );
document.write('					<td valign="top">' );
document.write('						<img src="images/gallery/intshell/spacer.gif" width=519 height=1 alt=""><br>' );

}




function insertGalleryBottom(){

document.write('					</td>' );
document.write('					<td>' );
document.write('						<img src="images/gallery/intshell/spacer.gif" width=12 height=1 alt=""><br>' );
document.write('					</td>' );
document.write('				</tr>' );
document.write('			</table>' );
document.write('			</td>' );
document.write('			<td background="images/gallery/intshell/gallery_internal_rshadow.gif">' );
document.write('				<img src="images/gallery/intshell/spacer.gif" width=10 height=1 alt=""><br>' );
document.write('			</td>' );
document.write('		</tr>' );
document.write('		<tr>' );
document.write('			<td>' );
document.write('				<img src="images/gallery/intshell/gallery_internal_bl.gif" width=10 height=89 alt=""><br>' );
document.write('			</td>' );
document.write('			<td bgcolor=#F7F7F7>' );
document.write('				<img src="images/gallery/intshell/gallery_internal_bottom.gif" width=543 height=89 alt=""><br>' );
document.write('			</td>' );
document.write('			<td>' );
document.write('				<img src="images/gallery/intshell/gallery_internal_br.gif" width=10 height=89 alt=""><br>' );
document.write('			</td>' );
document.write('		</tr>' );
document.write('	</table>' );

document.write('	<map name="gallery_internal_advert_Map">' );
document.write('		<area shape="rect" alt="" coords="451,6,529,26" href="gallery_newsletter.html">' );
document.write('		<area shape="rect" alt="" coords="362,6,435,26" href="gallery_tools.html">' );
document.write('		<area shape="rect" alt="" coords="273,6,347,26" href="gallery_tradeshow.html">' );
document.write('	<area shape="rect" alt="" coords="223,6,263,26" href="gallery_web.html">' );
document.write('	<area shape="rect" alt="" coords="140,6,212,26" href="gallery_advert.html">' );
document.write('	<area shape="rect" alt="" coords="99,6,130,26" href="gallery_pr.html">' );
document.write('	<area shape="rect" alt="" coords="10,6,88,26" href="gallery_corpid.html">' );
document.write('</map>' );

}