// JavaScript Document

function swap(i){
document[i].src = "images/" + i + "down.jpg"
}

function swapBack(i){
document[i].src = "images/" + i + "up.jpg"
}


function showLinks(){
//international linkages links
	document.getElementById('ilone').innerHTML = " &#3128;&#3129;&#3134;&#3119; &#3114;&#3149;&#3120;&#3146;&#3115;&#3142;&#3128;&#3120;&#3149;&#3122; &#3112;&#3135;&#3119;&#3134;&#3118;&#3093;&#3134;&#3112;&#3135;&#3093;&#3135; &#3086;&#3074;&#3114;&#3135;&#3093;&#3144;&#3112; &#3077;&#3117;&#3149;&#3119;&#3120;&#3149;&#3111;&#3137;&#3122; &#3100;&#3134;&#3116;&#3135;&#3108;&#3134;. "
	document.getElementById('iltwo').innerHTML = "  &#3086;&#3112;&#3149;.&#3078;&#3120;&#3149;.&#3088;. &#3114;&#3149;&#3120;&#3125;&#3143;&#3126;&#3134;&#3122;&#3137;-2009 "
        
        document.getElementById('ilone').href = "whatsnew1.html"
	document.getElementById('iltwo').href = "admissions6.html"
        
       
	
//News & events links
	document.getElementById('nneone').innerHTML = " &#3128;&#3149;&#3114;&#3142;&#3093;&#3149;&#3103;&#3149;&#3120;&#3118;&#3149; 2009 "
	document.getElementById('nnetwo').innerHTML = " &#3125;&#3135;&#3110;&#3149;&#3119;&#3134;&#3125;&#3135;&#3127;&#3119;&#3134;&#3122; &#3093;&#3143;&#3122;&#3074;&#3105;&#3120;&#3149; 2009-10 "


	document.getElementById('nneone').href = "spectrum09.html"
	document.getElementById('nnetwo').href = "downloads/Fianl_Academic_Calander_2009-10.pdf"
	

//Business & opportunities links

	document.getElementById('boone').innerHTML = " &#3103;&#3142;&#3074;&#3105;&#3120;&#3149; " 
	document.getElementById('botwo').innerHTML = " &#3078;&#3128;&#3093;&#3149;&#3108;&#3135;&#3112;&#3135;&#3098;&#3138;&#3114;&#3135;&#3074;&#3098;&#3105;&#3074; " 

        document.getElementById('boone').href = "businessopportunities.html"
		document.getElementById('botwo').href = "index.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"
	}

//-->

