function Stream(){
    vloc = document.program.redir[document.program.redir.selectedIndex].value;
   	parent.location.href = vloc;
}

function show(divID) {
	hide('asiapac');
	hide('americas');
	hide('middleeast');
	hide('europe');
	hide('africa');
	if (document.layers && document.layers[divID] != null)
		document.layers[divID].visibility = 'visible';
	else if (document.all)
		document.all[divID].style.visibility = 'visible';
	else if (document.getElementByID)
		document.getElementById(''+divID+'').innerHTML=html
		document.getElementById(''+divID+'').style.visibility = 'visible';
}
function hide(divID) {
	if (document.layers && document.layers[divID] != null)
		document.layers[divID].visibility = 'hidden';
	else if (document.all)
		document.all[divID].style.visibility = 'hidden'; 
	else if (document.getElementById)
		document.getElementById(''+divID+'').style.visibility = 'hidden';
}

function alertM(myUrl){
	if (confirm("You are now leaving the SBS website domain and will be transferred to a domain which is operated by a third party. SBS takes no responsibility for the content published on the website you are about to visit.")) {
		window.open(myUrl);
	}
}

function checkEmail() {

if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(subscribe.email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
return (false)
}
