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