// JavaScript Document


function swap(i){
document[i].src = "req_pic/" + i + "down.jpg"
}

function swapBack(i){
document[i].src = "req_pic/" + i + "up.jpg"
}


function showLinks(){
//international linkages links
	document.getElementById('ilone').innerHTML = "SGSY Project at Kozhikode"
	document.getElementById('iltwo').innerHTML = "SGSY Project at Alappuzha"
	

	document.getElementById('ilone').href = "cluster1.html"
	document.getElementById('iltwo').href = "cluster2.html"
	

//News & events links
	document.getElementById('nneone').innerHTML = "Fashion spectrum 2011"
	document.getElementById('nnetwo').innerHTML = "Fashion Spectrum 2011"


	document.getElementById('nneone').href = "newsnevents.html"
	document.getElementById('nnetwo').href = "newsnevents.html"
	

//Business & opportunities links

	document.getElementById('boone').innerHTML = "Tender Notices"
	document.getElementById('botwo').innerHTML = "Inviting Quotations & Rate Inquireis"


	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 = "ezinereg.html"
//	document.ezemail.submit()

}

function alumniValidate()
{
	location.href = "Alureg.html"
	}

//-->

