
// flash manipulation

function setFlashWidth(divid, newW){
	document.getElementById(divid).style.width = newW+"px";
}

function setFlashHeight(divid, newH){
	document.getElementById(divid).style.height = newH+"px";  
}

function setFlashSize(divid, newW, newH){
	setFlashWidth(divid, newW);
	setFlashHeight(divid, newH);
}

function hideContent(){
	$('rightCol').hide();
	$('content').hide();	
}
function showContent(){
	$('rightCol').show();
	$('content').show();
}

function setFlashWindow(type) {
	//alert("flash sizer");
	//alert("setFlashWindow("+type+")");
	if (type == "maximize"){
		setFlashSize("player",957,800);		
		//alert ($('bigbox'));
		$('bigbox').style.marginTop = '400px';
		
	} else {
		//alert("minimus");
		setFlashSize("player",325,800);
		$('bigbox').style.marginTop = '288px';
		
	}
}
