// JavaScript Document



// food

function showScrollMain(divname) {
	document.getElementById('swf-movie').style.display = 'none';
	document.getElementById('div1').style.display = 'none';
	document.getElementById('div2').style.display = 'none';
	document.getElementById(divname).style.display = 'block';
}

function showSwf(divname) {
	document.getElementById(divname).style.display = 'none';
	document.getElementById('swf-movie').style.display = 'block';
}


// Hide Email Addresses
function hideEmail(name,domain,text) {
	if (text == '') {
		text = name+"@"+domain;
	}
	var a="<a href='mailto:";
	var b=name+"@"+domain+"'>";
	var c=text;
	var d="</a>";
	document.write(a+b+c+d);
} 

// DW stock functions

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}