/*
function swap(i){
document[i].src = &quot;images/&quot; + i + &quot;down.jpg&quot;
}
function swapBack(i){
document[i].src = &quot;images/&quot; + i + &quot;up.jpg&quot;
}
*/
function showLinks(){
//Cluster Initiatives links
	document.getElementById('ilone').innerHTML = "Cluster1"
	document.getElementById('iltwo').innerHTML = "Cluster2"
	

	document.getElementById('ilone').href = "cluster1.html"
	document.getElementById('iltwo').href = "cluster2.html"
	

//News &amp; events links
	document.getElementById('nneone').innerHTML = "News 1"
	document.getElementById('nnetwo').innerHTML = "News 2"

	document.getElementById('nneone').href = "newsnevents1.html"
	document.getElementById('nnetwo').href = "newsnevents2.html"
	

//Business &amp; opportunities links
	document.getElementById('boone').innerHTML = "Tender 1"
	document.getElementById('botwo').innerHTML = "Tender 2"

	document.getElementById('boone').href = "businessopp1.html"
	document.getElementById('botwo').href = "businessopp2.html"

}


function validate(){
	/*
validChars = &quot;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@.0123456789_&quot;
if(document.ezemail.email.value.length == 0){
	alert(&quot;Please enter your valid email ID to subscribe to e-zine&quot;)
	document.ezemail.email.focus()
	return 
}
if(document.ezemail.email.value.indexOf(&quot;@&quot;) == -1 || document.ezemail.email.value.indexOf(&quot;@&quot;) != document.ezemail.email.value.lastIndexOf(&quot;@&quot;)) {
	alert(&quot;Invalid email ID. please look at '@'&quot;)
	document.ezemail.email.focus()
	return 
}
for(i = 0 ; i &lt;document.ezemail.email.value.length ; ++i){
	if(validChars.indexOf(document.ezemail.email.value.charAt(i)) == -1){
		alert(&quot;Invalid character in email ID. please enter valid email ID&quot;)
		document.ezemail.email.focus()
		return 
	}
}	*/
//location.href = "index.html"
//	document.ezemail.submit()
}
/*
function alumniValidate()
{
	location.href = &quot;Alureg.html&quot;
	}

*/
