<!--
var atcOriginal;
function saveAtc() {
	if (document.getElementById) {
		if (document.getElementById('atc')) {
			atcOriginal = document.getElementById('atc').href;
		}
	}
}
function showPoster() {
	hidediv('contentReelMud');
	hidediv('hang');
	showdiv('mainmpw');
	showdiv('castcrewdiv');
	setsh('tabPoster');
	sethd('tabHanger');
	sethd('tabReelMud');
}
function showHangerTab() {
	hidediv('mainmpw');
	hidediv('contentReelMud');
	hidediv('castcrewdiv')
	showdiv('hang');
	sethd('tabPoster');
	setsh('tabHanger');
	sethd('tabReelMud');
}
function showReelMudTab() {
	showdiv('mainmpw');
	showdiv('contentReelMud');
	showdiv('castcrewdiv');
	hidediv('hang');
	sethd('tabPoster');
	sethd('tabHanger');
	setsh('tabReelMud');
}
function hidediv(id) {
	if (document.getElementById) {
		if (document.getElementById(id)) {
			document.getElementById(id).style.display = 'none';
		}
	}	else {
		if (document.layers) {
			document.id.display = 'none';
		} else {
			document.all.id.style.display = 'none';
		}
	}
}
function showdiv(id) {
	if (document.getElementById) {
		if (document.getElementById(id)) {
			document.getElementById(id).style.display = 'block';
		}
	} else {
		if (document.layers) {
			document.id.display = 'block';
		} else {
			document.all.id.style.display = 'block';
		}
	}
}
function sethd(obj) {
	if (document.getElementById(obj)) {
		document.getElementById(obj).style.borderBottom = '1px solid #000000';
		document.getElementById(obj).style.borderTop = '1px solid #000000';
		document.getElementById(obj).style.backgroundColor = '#336699';
		document.getElementById(obj).style.color = '#ffffff';
	}
}
function setsh(obj) {
	if (document.getElementById(obj)) {
		document.getElementById(obj).style.borderBottom = '1px solid #F2F4F9';
		document.getElementById(obj).style.borderTop = '1px solid #000000';
		document.getElementById(obj).style.backgroundColor = '#F2F4F9';
		document.getElementById(obj).style.color = '#000000';
	}
}
function initvpid() {
	saveAtc();
	if (!hgOnline) hidediv('tabHanger');
	if (!rmOnline) hidediv('tabReelMud');
}
//-->
