/*
	IN THIS JS FILE:
	
		functions changelink_switch,changeback_switch,changelink_blue,changeback_blue
			powered by blueswitch color changer functions
		
		function popUp(url)
			creates a pop-up window and navigates to the given url
	
*/

//powered by blueswitch style changer
blueSwitchOriginalColor = "#5B97B1"
function changelink_switch(){
	document.all._switch.style.color='#FF9933'; 
	//document.all._switch.style.textDecoration='underline';
	document.all._blue.style.color='#00479C'; 
	//document.all._blue.style.textDecoration='underline';
}

function changeback_switch(){
	document.all._switch.style.color=blueSwitchOriginalColor; 
	//document.all._switch.style.textDecoration='none';
	document.all._blue.style.color=blueSwitchOriginalColor; 
	//document.all._blue.style.textDecoration='none';
}

	function changelink_blue(){
	document.all._blue.style.color='#00479C'; 
	//document.all._blue.style.textDecoration='underline';
	document.all._switch.style.color='#FF9933'; 
	//document.all._switch.style.textDecoration='underline';
}

function changeback_blue(){
	document.all._blue.style.color=blueSwitchOriginalColor; 
	//document.all._blue.style.textDecoration='none';
	document.all._switch.style.color=blueSwitchOriginalColor; 
	//document.all._switch.style.textDecoration='none';
}

								

function popUp(url) {
	options = 'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=600,height=400';
	sealWin = window.open(url,"win", options);
	self.name = "mainWin";
}