// GLOBAL JAVASCRIPT FILE FOR WILDLYSOPHISTICATED

function openWin(theURL,winName,features) {
  window.open(theURL,winName,features);
}


function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}
	
	
	var strImagePath = "images/";
	
	function newImage(strFilename) {
		strFilename = strImagePath + strFilename;
		if (document.images) {
			objTempImage = new Image();
			objTempImage.src = strFilename;
			return objTempImage;
		}
	}
	
	home1 = newImage("nav_home_off.gif");
	home2 = newImage("nav_home_on.gif");
	sch1 = newImage("nav_sch_off.gif");
	sch2 = newImage("nav_sch_on.gif");
	tour1 = newImage("nav_tour_off.gif");
	tour2 = newImage("nav_tour_on.gif");
	programs1 = newImage("nav_programs_off.gif");
	programs2 = newImage("nav_programs_on.gif");
	standings1 = newImage("nav_standings_off.gif");
	standings2 = newImage("nav_standings_on.gif");
	exe1 = newImage("nav_exe_off.gif");
	exe2 = newImage("nav_exe_on.gif");
	clinics1 = newImage("nav_clinics_off.gif");
	clinics2 = newImage("nav_clinics_on.gif");
	contact1 = newImage("nav_contact_off.gif");
	contact2 = newImage("nav_contact_on.gif");
	news1 = newImage("nav_news_off.gif");
	news2 = newImage("nav_news_on.gif");
	meetings1 = newImage("nav_meetings_off.gif");
	meetings2 = newImage("nav_meetings_on.gif");
	coache1 = newImage("nav_coache_off.gif");
	coache2 = newImage("nav_coache_on.gif");
	rules1 = newImage("nav_rules_off.gif");
	rules2 = newImage("nav_rules_on.gif");
	links1 = newImage("nav_links_off.gif");
	links2 = newImage("nav_links_on.gif");
	fun1 = newImage("nav_fun_off.gif");
	fun2 = newImage("nav_fun_on.gif");
	photos1 = newImage("nav_photos_off.gif");
	photos2 = newImage("nav_photos_on.gif");

	
	function changeImage(strLocation, strImage) {
		document.images[strLocation].src = eval(strImage + ".src");
	}






