<!--
function newFullWindow(href) {
	var newWindow = window.open(href, "newFullWindow");
	if(!newWindow) return false;
	return true;
}

function recipeWindow(href) {
	var newWindow = window.open(href, "recipeWindow", "width=540, height=450, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes");
	if(!newWindow) return false;
	return true;
}

function videoWindow(href) {
	var newWindow = window.open(href, "videoWindow", "width=540, height=360, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes");
	if(!newWindow) return false;
	return true;
}

var imageNumber = Math.round((Math.random()*6)+1);

function showPromoImage(){
	document.write('<img src="../assets/images/leftPromo_recipe'+imageNumber+'.jpg" />');
}
//-->