<!--
// Common Javascript files


function contactWindow() {
   newWindow = window.open("contact.htm","","height=470,width=640");
}

function contactWindow2() {
   newWindow = window.open("../contact.htm","","height=470,width=640");
}

function fairplayWindow() {
   newWindow = window.open("wsnfairplay.htm","","height=700,width=660,resizable,scrollbars");
}

function pointsWindow() {
   newWindow = window.open("wsnpointsys.htm","","height=220,width=720");
}

function pointsWindow2() {
   newWindow = window.open("../wsnpointsys.htm","","height=220,width=720");
}

// -- BUTTON MOUSEOVER COLORS --
function highlightButton(s) {
if ("INPUT"==event.srcElement.tagName)
event.srcElement.className=s
}
// -- END BUTTON COLORS --


// LINK MOUSEOVER COLORS
function getonme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "onme1" ;
}
}

function getoffme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "offme";
}
}

document.onmouseover = getonme ;
document.onmouseout = getoffme ;
//-- END LINK MOUSEOVER COLORS 

//-->