			var id = document.body.getAttribute('id');
			if ( id == 'home' ) {
				document.writeln( '<img src="/cheez_it/images/nav_home_1.gif" width="69" height="33" alt="HOME" border="0">' );
			}
			else {
				document.writeln( '<a href="/cheez_it/index.shtml" onmouseover="iName=\'image3\'; Ichange(\'changed3\')" onmouseout="Ichange(\'default3\')"><img src="/cheez_it/images/nav_home_0.gif" width="69" height="33" alt="HOME" border="0" name="image3"></a>' );
			}
			if ( id == 'products' ) {
				document.writeln( '<a href="/cgi-bin/brandpages/product.pl?company=145"><img src="/cheez_it/images/nav_products_1.gif" width="103" height="33" alt="PRODUCTS" border="0"></a>' );
			}
			else {
				document.writeln( '<a href="/cgi-bin/brandpages/product.pl?company=145" onmouseover="iName=\'image4\'; Ichange(\'changed4\')" onmouseout="Ichange(\'default4\')"><img src="/cheez_it/images/nav_products_0.gif" width="103" height="33" alt="PRODUCTS" border="0" name="image4"></a>' );
			}
			if ( id == 'faq' ) {
				document.writeln( '<img src="/cheez_it/images/nav_faqs_1.gif" width="65" height="33" alt="FAQs" border="0">' );
			}
			else {
				document.writeln( '<a href="/cgi-bin/brandpages/faq/list.pl?Company=145&skin=cheez-it" onmouseover="iName=\'image5\'; Ichange(\'changed5\')" onmouseout="Ichange(\'default5\')"><img src="/cheez_it/images/nav_faqs_0.gif" width="65" height="33" alt="FAQs" border="0" name="image5"></a>' );
			}
			if ( id == 'offers' ) {
				document.writeln( '<img src="/cheez_it/images/nav_offers_1.gif" width="141" height="33" alt="Special Offers" border="0">' );
			}
			else {
				document.writeln( '<a href="/cheez_it/offers.shtml" onmouseover="iName=\'image6\'; Ichange(\'changed6\')" onmouseout="Ichange(\'default6\')"><img src="/cheez_it/images/nav_offers_0.gif" width="141" height="33" alt="Special Offers" border="0" name="image6"></a>' );
			}

			
			
popUpWindow = function(URL,windowName,width,height) {
	var w = screen.availWidth;
	var h = screen.availHeight;
	var leftPos = Math.round((w-width)/2);
	var topPos = Math.round((h-height)/2);
	var defaults = "scrollbars=yes,resizable=yes,";
	var centerOnScreen = "top="+topPos+",left="+leftPos+",width="+width+",height="+height;
	// safari seems to need the trailer comma
	var options = defaults + centerOnScreen + ",";
	var msgWindow = window.open(URL,windowName,options);
	msgWindow.focus();
}