<!-- // a javascript rollover

if (document.images) {

            var aboutoff = new Image()
            aboutoff.src = "img/off_about.jpg"
            var abouton = new Image()
            abouton.src = "img/on_about.jpg"

			var tempoff = new Image()
            tempoff.src = "img/off_temporary.jpg"
            var tempon = new Image()
            tempon.src = "img/on_temporary.jpg"

			var permoff = new Image()
            permoff.src = "img/off_permanent.jpg"
            var permon = new Image()
            permon.src = "img/on_permanent.jpg"			
			
			var trainoff = new Image()
            trainoff.src = "img/off_training.jpg"
            var trainon = new Image()
            trainon.src = "img/on_training.jpg"		
			
			var workoff = new Image()
            workoff.src = "img/off_working.jpg"
            var workon = new Image()
            workon.src = "img/on_working.jpg"		
			
	var contactoff = new Image()
        contactoff.src = "img/off_contact.jpg"
        var contacton = new Image()
        contacton.src = "img/on_contact.jpg"

        var newsoff = new Image()
        newsoff.src = "img/off_news.jpg"
        var newson = new Image()
        newson.src = "img/on_news.jpg"

        var taxcalcoff = new Image()
        taxcalcoff.src = "img/off_tax_calculator.jpg"
        var taxcalcon = new Image()
        taxcalcon.src = "img/on_tax_calculator.jpg"


									}

function img_act(imgName) {
  if (document.images) 
    document[imgName].src = eval(imgName + 'on.src')

}

function img_inact(imgName) {
  if (document.images)
    document[imgName].src = eval(imgName + 'off.src')

}
		
// -->

// Popup Windows

function openmapsWindow() {
popupWin = window.open('map.html', 'Map', 'scrollbars,width=403,height=507,resizable=no,status=yes')      
        }
        function opentaxWindow() {
                        popupWin = window.open('taxcalc.php', 'tax','scrollbars,width=460,height=330,resizable=no,status=yes')
        }

