var LastOpenSubmenu = "";

function topMenuOver(id){
	if(LastOpenSubmenu!=''){
		document.getElementById(LastOpenSubmenu).style.display = 'none';
	}
	if(id!="-1"){
		submenu = document.getElementById(id);
		submenu.style.display = 'block';
		LastOpenSubmenu = id;
	}
}

function NewWindow(mypage, myname, w, h) {
	var winl = (screen.width - w  ) / 2;
	var wint = (screen.height - h - 60 ) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',location=no,scrollbars=no,status=no';
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function showPromoPopup(){
	if (! window.focus)return true;
	var href;
	var windowname = 'Motorshow';
	href= "motorshow.html";
	window.open(href, windowname, 'width=260,height=445,scrollbars=no');
	return false;
}