

function openWindowAnnual(url, name) 
{
popupWin = window.open(url, name, 'toolbar=no,location=no,resizable=yes,width=700,height=600,directories=no,menubar=no,status=1,scrollbars=yes,left=20,top=20')
}

	

function OpenWindow(theURL,winName,features)
{appWindow = window.open(theURL,winName,features);
appWindow.focus();}


function walkOver(src,clearOver){
if (!src.contains(event.fromElement)){
	src.style.cursor = 'hand'; 
	src.bgColor = clearOver;}}


function walkOut(src,clearIn)
{if (!src.contains(event.toElement))
{src.style.cursor = 'default';
src.bgColor = clearIn;}}


function walkClick(src)
{if(event.srcElement.tagName=='TD')
{src.children.tags('A')[0].click();}}

if (parent.frames.length > 0) {
parent.location.href = location.href;}

function CenterPopUp() {
	var PopWidth;
	var PopHeight;
	PopWidth = (window.screen.width/2) - (122 + 15); //half the screen width minus half the new window width (plus 5 pixel borders).
	PopHeight = (window.screen.height/2) - (27 + 75); //half the screen height minus half the new window height (plus title and status bars).
	var TheWindow = window.open("soon.htm","Window2","status,height=250,width=390,resizable=no,toolbar=no,location=no,left=" + PopWidth + ",top=" + PopHeight + ",screenX=" + PopWidth + ",screenY=" + PopHeight + ",scrollbars=no");
	TheWindow.focus();}
	
	function walkOverNew(src,clearOver)
{if (!src.contains(event.fromElement))
{src.style.cursor = 'hand'; src.bgColor = clearOver;}}

function walkOutNew(src,clearIn)
{if (!src.contains(event.toElement))
{src.style.cursor = 'default';
src.bgColor = clearIn;}}

function walkClickNew(src)
{if(event.srcElement.tagName=='TD')
{src.children.tags('A')[0].click();}}




/*
	Standards Compliant Rollover Script
	Author : Daniel Nolan
	http://www.bleedingego.co.uk/webdev.php
*/

function initRollovers() {
	if (!document.getElementById) return
	
	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');

	for (var i = 0; i < aImages.length; i++) {		
		if (aImages[i].className == 'imgover') {
			var src = aImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var hsrc = src.replace(ftype, '_o'+ftype);

			aImages[i].setAttribute('hsrc', hsrc);
			
			aPreLoad[i] = new Image();
			aPreLoad[i].src = hsrc;
			
			aImages[i].onmouseover = function() {
				sTempSrc = this.getAttribute('src');
				this.setAttribute('src', this.getAttribute('hsrc'));
			}	
			
			aImages[i].onmouseout = function() {
				if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_o'+ftype, ftype);
				this.setAttribute('src', sTempSrc);
			}
		}
	}
}

window.onload = initRollovers;



function BoardwalkSignEN_onmousedown() {
var theMsg;
theMsg = 'Please download Boardwalk logos from www.bwalk.com/logo';

if (event.button==2) {
	alert(theMsg);
	window.open('http://www.bwalk.com/logo');
}


}


function BoardwalkSignFR_onmousedown() {
var theMsg;
theMsg = 'Visitez www.bwalk.com/logo';

if (event.button==2) {
	alert(theMsg);
	window.open('http://www.bwalk.com/logo');
}}
