﻿// JScript File

function rollover(imagename){
	newsrc = eval(imagename + 'Over.src');
	document.images[imagename].src=newsrc;
}

function rollout(imagename){
	newsrc = eval(imagename + '.src');
	document.images[imagename].src=newsrc;
}

function mouseover(imagename, imagesrc){
	document.images[imagename].src=imagesrc;
}

function mouseout(imagename, imagesrc){
	document.images[imagename].src=imagesrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function AddEmailLink(username, domain, href, classname, title)
{
	user = username;
	site = domain;

	if (classname == "")
	{
		document.write('<a href=\"' + href + '\" title=\"' + title + '\">');
	}
	else
	{
		document.write('<a href=\"' + href + '\" class=\"' + classname + '\" title=\"' + title + '\">');
	}
	document.write(user + '@' + site + '</a>');
}

function linkIEUpdate()
{
    document.write('<script type="text/javascript" src="/includes/ieupdate.js"></script>');
}

function changeContactDetails(contactDetails)
{
    switch(contactDetails)
    {
        case "contact":
            document.getElementById('pnlcontactform').style.visibility="visible";
            document.getElementById('pnlcontactform').style.display="block";
            document.getElementById('pnllocationlink').style.visibility="visible";
            document.getElementById('pnllocationlink').style.display="block";
            document.getElementById('pnlmap').style.visibility="hidden";
            document.getElementById('pnlmap').style.display="none";
            document.getElementById('pnlcontactformlink').style.visibility="hidden";
            document.getElementById('pnlcontactformlink').style.display="none";
	        break;
        case "map":
            document.getElementById('pnlmap').style.visibility="visible";
            document.getElementById('pnlmap').style.display="block";
            document.getElementById('pnlcontactformlink').style.visibility="visible";
            document.getElementById('pnlcontactformlink').style.display="block";
            document.getElementById('pnlcontactform').style.visibility="hidden";
            document.getElementById('pnlcontactform').style.display="none";
            document.getElementById('pnllocationlink').style.visibility="hidden";
            document.getElementById('pnllocationlink').style.display="none";
	        break;
        default:
            document.getElementById('pnlcontactform').style.visibility="visible";
            document.getElementById('pnlcontactform').style.display="block";
            document.getElementById('pnllocationlink').style.visibility="visible";
            document.getElementById('pnllocationlink').style.display="block";
            document.getElementById('pnlmap').style.visibility="hidden";
            document.getElementById('pnlmap').style.display="none";
            document.getElementById('pnlcontactformlink').style.visibility="hidden";
            document.getElementById('pnlcontactformlink').style.display="none";
            break;
    }
}