
/* General Site variables script */

pagelink		= document.location
pagename		= document.title
sitetitle		= 'Flourbin@Allseasons © '
siteurl		= 'http://www.flourbin.com'
developer		= 'Peaknet LTD'
developerurl 	= 'http://www.peaknet.co.uk'



/* Call Ingredients for a Product */

function showIngredients(product)
	{
	thisUrl = "/cgi-bin/ingredients.cgi/" + product;
	var ing_window = window.open(thisUrl,"Ingredients","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,height=450,width=350");
	}


/* Detect for correct browser to determine CSS file */

if		(document.layers)		               			{ browser="n4"; }
else if	(document.all)		 	                    		{ browser="ie"; }
else if	(!document.all && document.getElementById)	{ browser="n6"; }


/* Previous Page ... */

function previous() { history.go(-1); }



/* Show something ... (generic/univeral use) */

function hideShow(pagePartToHide,pagePartToShow)
	{
	document.getElementById(pagePartToHide).className='off';
	document.getElementById(pagePartToShow).className='on';
	}


/* Show something ... (hides the others first) */

function reveal(pagePart)
{
document.getElementById('press00').className='off';
document.getElementById('press01').className='off';
document.getElementById('press02').className='off';
document.getElementById('press03').className='off';
document.getElementById('press04').className='off';
document.getElementById('press05').className='off';
document.getElementById('press06').className='off';

document.getElementById(pagePart).className='article on';
}



/* Show Help (admin page) */

function showHelp(pageInQuestion)
{
alert('coming soon...');
}



/* Focus on a form element etc. */

function focusOn(pagePart)
	{
	document.getElementById(pagePart).focus();
	}



/* End ... */

