function popThis(theURL,winName,features) 
{ //v2.0
     window.open(theURL,winName,features);
}
	
function preload(imgObj,imgSrc) 
{
     if (document.images) 
     {
     eval(imgObj + 'On = new Image()')
     eval(imgObj + 'On.src = imgSrc + "_on.gif"')
     eval(imgObj + 'Off = new Image()')
     eval(imgObj + 'Off.src = imgSrc + "_off.gif"')
	}
}

preload('a','images/menu_home')
preload('b','images/menu_buildersstory')
preload('c','images/menu_vrtours')
preload('d','images/menu_amenities')
preload('e','images/menu_floorplans')
preload('f','images/menu_features')
preload('g','images/menu_downtown')
preload('h','images/menu_location')
preload('i','images/menu_webcam')
preload('j','images/menu_news')
preload('k','images/menu_register')
preload('l','images/menu_contact')
preload('m','images/menu_finishes')

function img_act(imgName) 
{
     imgOn = eval(imgName + "On.src");
     document [imgName].src = imgOn;
}

function img_inact(imgName) 
{
     imgOff = eval(imgName + "Off.src");
     document [imgName].src = imgOff;
}

if (top.audio.location.href.indexOf("audio_a.html") < 0) 
{
   top.audio.location.href = "audio_a.html";
}
