// JavaScript Document
// div visible and invisible
function toggle_visibility2(id) {
	var e = document.getElementById(id); 
	if(e.style.visibility == 'visible') {
		e.style.visibility = 'hidden'; 
		e.style.display='none';
	} else {
		e.style.visibility = 'visible'; 
		e.style.display='block';
	}
} 

//this closes the share box when the user clicks on the red button
function close_share(id){
	 var e = document.getElementById(id); 
	 e.style.visibility = 'hidden';
	 e.style.display='none'; 
}

function changeTab(pos) {

	if (pos == 1) {

		var switchto = "whatson-mod-wrap";

		var switchfrom = "whatson-mod-wrap-tv";

		var tabon = "tab-tvr-radioa";

		var taboff = "tab-tvr-tva";

		} else {

		var switchto = "whatson-mod-wrap-tv";

		var switchfrom = "whatson-mod-wrap";

		var tabon = "tab-tvr-tva";

		var taboff = "tab-tvr-radioa";

		}
}
