var x=0;
var y=0;
var z=0;
var r;

function genRandom() {
r=Math.round(Math.random()*(1-6)) + 6;

}
function showfeature(m) {
	if(m==1) {
		document.write("Featured Product:"+"</font><br><a href='/store/categories/details/1#Quinoa%20Handbook'>"+
		"<img class='floatingimageleft'  src='http://www.quinoa.com/products/pics/Handbook_Thumb.jpg' alt='Quinoa Handbook'> </a><font size='+1' face='Arial'>"+
		"<b><p><a class='storelink' href='/store/categories/details/1#Quinoa%20Handbook'>The Quinoa Handbook</a></b></font><br><font face='Arial'>"+
		"A scientific and nutritional reference for institutions and individuals requiring additional information regarding the properties and nutritional information on quinoa grain. Includes Recipes and Color Pictures. To view table of contents follow this "+"<a class='storelink' href='/store/categories/details/1#Quinoa%20Handbook'>link</a>.</p><p> <a class='storelink' href='/store/categories/details/1#Quinoa%20Handbook'>Buy it now</a> for a special price.</p></font>"
		+"<BR>");
	}



	if(m==2) {
document.write("Featured Product:</font><br><a href='/store/categories/details/3#Golden%20Quinoa%20Fully%20Processed'>"
+"<img class='floatingimageleft' src='http://www.quinoa.com/products/pics/Quinoa_Golden_(Fully_Processed)_Thumb.jpg' alt='Golden Quinoa'></a><font size='+1' face='Arial'>"
+"<b><p><a class='storelink' href='/store/categories/details/3#Golden%20Quinoa%20Fully%20Processed'>Fully Processed Golden Quinoa</a></b></font><br><font face='Arial'>"
+"Our locally grown and cleaned delicious Golden Quinoa is available Organic and Conventional in 50 lb bags, 25 lb bags, cases of 24 one lb bags, and now Conventional Golden Quinoa is available in individual one lb bags for those of you who would like to sample our product.</p>"
+"<p><a class='storelink' href='/store/categories/details/3#Golden%20Quinoa%20Fully%20Processed'>Buy it now</a></p></font>"
+"<BR>");
	}
	if(m==3) {
	document.write("Featured Product:</font><br><a href='/store/categories/details/4'>"+
	"<img class='floatingimageleft'  src='http://www.quinoa.com/products/pics/Quinoa_Pasta_Spaghetti_Thumb.jpg' alt='Quinoa Spaghetti'> </a><font size='+1' face='Arial'>"+
	"<b><p><a class='storelink' href='/store/categories/details/4'>Quinoa Pasta</a></b></font><br><font face='Arial'>"+
	"Made from a blend of Organic Quinoa and Organic Brown Rice our Pasta is available as Spaghetti, Fettucine, Spirals, and Elbows.</p><p> <a class='storelink' href='/store/categories/details/4'>Buy it now</a></p></font>"+
"<br />");

}

	if(m==4) {
		document.write("Featured Product:</font><br><a href='/store/categories/details/11#Milled%20Brown%20Flax'>"+
		"<img class='floatingimageleft'  src='http://www.quinoa.com/products/pics/Flax_Milled_Brown_Thumb.jpg' alt='Milled Brown Flax'> </a><font size='+1' face='Arial'>"+
		"<b><p><a class='storelink' href='/store/categories/details/11#Milled%20Brown%20Flax'>Milled Brown Flax</a></b></font><br><font face='Arial'>"+
		"Pure and natural flaxseed milled to smaller particle size. Milling of the whole seed maintains the beneficial natural oils and makes the flaxseed much more digestible."+
		"</p><p> <a class='storelink' href='/store/categories/details/11#Milled%20Brown%20Flax'>Buy it now</a></p></font>"+
"<BR>");

}

	if(m==5) {
		document.write("Featured Product:</font><br><a href='/store/categories/details/3#Quinoa%20Quick%20Powder%20-%20Extra%20Fine'>"+
		"<img class='floatingimageleft'  src='http://www.quinoa.com/products/pics/Quick_Quinoa_Powder_Thumb.jpg' alt='Quick Quinoa Powder'> </a><font size='+1' face='Arial'>"+
		"<b><p><a class='storelink' href='/store/categories/details/3#Quinoa%20Quick%20Powder%20-%20Extra%20Fine'>Quick Quinoa Powder - Extra Fine</a></b></font><br><font face='Arial'>"+
		"Extra Fine 100% Pure Quinoa. See the ad <a href='http://www.quinoa.com/files/quick-quinoa-advertisement.pdf'>here</a> "+
		"</p><p> <a class='storelink' href='/store/categories/details/3#Quinoa%20Quick%20Powder%20-%20Extra%20Fine'>Buy it now</a></p></font>"+
"<BR>");



	}
	if(m==6) {
		document.write("Featured Product:</font><br><a href='/store/categories/details/11'>"+
		"<img class='floatingimageleft'  src='http://www.quinoa.com/products/pics/Flax_Brown_Thumb.jpg' alt='Brown Flax'> </a><font size='+1' face='Arial'>"+
		"<b><p><a class='storelink' href='/store/categories/details/11'>Flax</a></b></font><br><font face='Arial'>"+
		"Cool season Brown or Golden Flax Seed grown North of the 51st parallel is noted for it's high quality oil content. Flax seed is an excellent source of Omega-3 Fatty Acids."+
		"</p><p> <a class='storelink' href='/store/categories/details/11'>Buy it now</a></p></font>"+
"<br />");



	}



}

//generate 3 unique random numbers to show 3 features
function makeNums() {
genRandom();
x=r;
genRandom();
while(r==x) {
genRandom();
}
y=r;
genRandom();
while((r==y)||(r==x)) {
genRandom();
}
z=r;
}
