/***********************************************/
/* Wendys.co.nz 2007		                   */
/* General Scripts	                           */
/***********************************************/

// Popup window in center of screen
function openWindow(url) {
	// Used in conjunction with Flash External Interface
	var leftVal = (screen.width / 2) - 320;
	var topVal = (screen.height / 2) - 200;
	newWindow = window.open("/assets/html/"+url, "wendysPopup", "toolbar=0,location=0,scrollbars=1,width=640,height=400,left="+leftVal+",top="+topVal+"")
}

// Fix for HTML Navigation Drop Down Menu
<!--//--><![CDATA[//><!--
/*
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
// This is needs to be called only if flash isnt installed to prevent errors when Flash is switched in as "nav" no longer exists
if (window.attachEvent) window.attachEvent("onload", sfHover);
*/
//--><!]]>