// ************************************************************
// FUNCTIONS...

// ...swap btn on rollOver...
// ...assumes naming convention : OFF name1.gif/name2.gif ON...

function btnON(n)	{
	r = n.src.toString();
	x = ".gif"
	y = r.indexOf(x) - 1;
	z = r.substring(0,y);
	z += "b.gif"
	n.src = z;
}


// ...swap btn on rollOut...

function btnOFF(n)	{
	r = n.src.toString();
	x = ".gif"
	y = r.indexOf(x) - 1;
	z = r.substring(0,y);
	z += "a.gif"
	n.src = z;
}


// ...define window status rollover text...

function wStat(x)	{
	if(x==0) return "home";
	if(x==1) return "Feature";
	if(x==2) return "Prices";
	if(x==3) return "How to order";
	if(x==4) return "Contact";
	if(x==5) return "About us";
    
}




// ...define links...

function clickBTN(x)	{
    if(x==1) parent.content.location = "PDFS/MMOW_orderform.pdf";
}







