if(location.href.indexOf('://10.0.1.100/') != -1 ){
	var rootdomain="http://"+window.location.hostname+"/yourtv.tv/";
	var cgi = 'http://10.0.1.100/yourtv.tv/cgi-bin/';	
//	var cgi = "http://"+window.location.hostname+"/cgi-bin/";	
}else if($('httpsDiv') && $('httpsDiv').value == "Yes"){
	var rootdomain="https://"+window.location.hostname+"/";
	var cgi = '../cgi-bin/';	
}else{
	var rootdomain="http://"+window.location.hostname+"/";
	var cgi = '../cgi-bin/';	
//	var cgi = "http://"+window.location.hostname+"/cgi-bin/";
}

function $(id){return document.getElementById(id);}	

function showElement(id){
	if($(id).style.display == 'none'){
		$(id).style.display = '';
	}else{
		$(id).style.display = 'none';
	}
}

function showVideo(mode){
	if(mode == 'open'){
		$('videoDiv').style.display = '';
		$('introDiv').style.display = 'none';
		$('voiceOverDiv').style.display = 'none';		
	}else{
		$('bckGroundDim').style.display = 'none';
		$('introDiv').style.display = 'none';
		$('videoDiv').style.display = 'none';
		$('voiceOverDiv').style.display = 'none';
	}
}
