function displayVideo(index,SectionName){
	switch(index){
		case 0:
			location.href = "../Videos/"+SectionName+"subtitled.wmv";
		break;
		case 1:
			location.href = "../Videos/"+SectionName+".wmv";
		break;
		case 2: 
			location.href = "../Videos/"+SectionName+"subtitled.wmv";
		break;
		case 3:
			location.href = "../Videos/"+SectionName+"_100k.mov";
		break;
		case 4:
			location.href = "../Videos/"+SectionName+"subtitled_100k.mov";
		break;
		alert(location.href);
	}
}

//var Videos = document.getElementById('Videos');

function goVideo(select){
	//alert(select);
	//if(document.Videos){
		//alert("doc.vid");
		//alert(document.forms.Videos.Video1.selectedIndex + "hello");
		switch(select){
			case 1:
				displayVideo(document.getElementById("Video1").selectedIndex,"WhyOnline1");
			break;
			case 2:
				displayVideo(document.getElementById("Video2").selectedIndex,"Verisigndo2");
			break;
			case 3:
				displayVideo(document.getElementById("Video3").selectedIndex,"Fraud1");
			break;
			case 4:
				displayVideo(document.getElementById("Video4").selectedIndex,"Security2");
			break;
		//}
	}
}

