
<!-- Begin header - Featured Products

	// NOTE: If you use a ' add a slash before it like this \' -->

	var FeaturedProductPlacementVAlign = "center";  		// Vertical Alignment of the Featured Product
	var FeaturedProductImageName = "ike_surveylab_button.png";	// name of the image for the featured product

	//  ---------- You shouldn't have to change anything below this line  >
	
	var FeaturedProducts = " \
		<a href='featured_products.htm'> 				\
			Featured Products 						\
		</a>									\
	";
	
	var FeaturedProductString = "<td valign = '";
		FeaturedProductString += FeaturedProductPlacementVAlign;
		FeaturedProductString +="'>";
	
	var FeaturedProductImageString = "<img src='picts/";
		FeaturedProductImageString += FeaturedProductImageName;
		FeaturedProductImageString += "'><BR>";
		
		FeaturedProductString += FeaturedProductImageString
		FeaturedProductString += FeaturedProducts + "</td>"
		
	document.write(FeaturedProductString);
//  End -->