// JavaScript Document

/*match function names with flash actionscript in nav.fla file.

click on each button and go to actions, check getURL function :

on (release) {
getURL ("javascript:aboutus();  void(0);");	
}*/



/*----------------------------------------------------------------------------------------*/	


	function aboutus(){
		window.location.href = 'aboutus.html'
	}
	
	function publications(){
		window.location.href = 'publications.html'
	}
	
	function advertising(){
		window.location.href = 'advertise.html'
	}
	
		function subscriptions(){
		window.location.href = 'subscriptions.html'
	}
	
	function reprints(){
		window.location.href = 'reprints.html'
	}
	
	function resources(){
		window.location.href = 'resources.html'
	}
	
	function events(){
		window.location.href = 'events.html'
	}
	
	function contactus(){
		window.location.href = 'contactus.html'
	}
	
/*----------------------------------------------------------------------------------------*/	

