﻿
function outputMainNavigationLinks(flWithStorePolicy)   {
	
	var linkStr = "";
	linkStr = linkStr + "<ul><li><a href='/eco_friendly_clothing_home.htm'>home</a></li>";
	linkStr = linkStr + "<li><a href='/eco_friendly_clothing.htm'>clothing</a></li>"
	linkStr = linkStr + "<li><a href='/catalogue/Extras.html'>accessories</a></li>";
	linkStr = linkStr + "<li><a href='/lilikoi_runway.htm'>runway</a></li>";
	linkStr = linkStr + "<li><a href='/eco_friendly_clothing_designer_biography.htm'>biography</a></li>";
	linkStr = linkStr + "<li><a href='/eco_friendly_clothing_events.htm'>events</a></li>";
	linkStr = linkStr + "<li><a href='/lilikoi_stores_list.html'>retail stores</a></li>";
	linkStr = linkStr + "<li><a href='/protected/wholesale.html'>wholesale</a></li>";
	linkStr = linkStr + "<li><a href='/eco_friendly_clothing_contact.htm'>contact</a></li>";
	
	
	// Hey Barb! Put new pages you want to link in above here! 
	if (flWithStorePolicy == true)   {
		
		linkStr = linkStr + "<li><a href='/catalogue/storepolicy.html'>store policy</a></li>";
	}
	
	return(linkStr + "</ul>");
}

function outputRandomImage()   {
	
	var images; var index;
	
	images = new Array(5);
	images[0] = "<a href='http://www.lilikoiclothing.com/catalogue/Dresses.html'><img src='http://www.lilikoiclothing.com/templateimages/AmeliaDressweb.jpg' alt='Amelia Dress' style='float:right' border='0' /></a>";
	images[1] = "<a href='http://www.lilikoiclothing.com/catalogue/Tops.html'><img src='http://www.lilikoiclothing.com/templateimages/monoaskirtsuzannetank.jpg' alt='Tank' style='float:right' border='0' /></a>";
	images[2] = "<a href='http://www.lilikoiclothing.com/catalogue/Skirts.html'><img src='http://www.lilikoiclothing.com/templateimages/ertebrightsmall.jpg' alt='Erte' style='float:right' border='0' /></a>";
	images[3] = "<a href='http://www.lilikoiclothing.com/catalogue/Tops.html'><img src='http://www.lilikoiclothing.com/templateimages/HannahSweaterweb.jpg' alt='Hannah Sweater' style='float:right' border='0' /></a>";
	images[4] = "<a href='http://www.lilikoiclothing.com/catalogue/Samantha%20Mini%20Dress.html'><img src='http://www.lilikoiclothing.com/templateimages/cover_page_white_web.jpg' alt='Samantha Mini Dress' style='float:right' border='0' /></a>";
	images[5] = "<a href='http://www.lilikoiclothing.com/catalogue/Samantha%20Mini%20Dress.html'><img src='http://www.lilikoiclothing.com/templateimages/cover_page_white_web.jpg' alt='Samantha Mini Dress' style='float:right' border='0' /></a>";	
	index = Math.floor(Math.random() * images.length);

	return(images[index]);

}

function checkForColorAndSize(obj)       {
	// MDC - 2008
	if (obj.form.os0.value == "")  {
		
		obj.form.os0.focus();
		return(false);
	}	
	if (obj.form.os1.value == "")  {
		
		obj.form.os1.focus();
		return(false);
	}	
return(true)
}

