////////////////////////////////////////////////////////////////////
// resizeFlash v1.0
// (c) Clair et Net. 
////////////////////////////////////////////////////////////////////

window.onload = resizeFlash;
window.onresize = resizeFlash;

function resizeFlash(){
	w = document.body.scrollWidth;
	h = document.body.scrollHeight;	
	if(w < 950){
		w = "950px";	
	}else{
		w = "100%";	
	}
	if(h < 600){
		h = "600px";
	}else{
		h = "100%";
	}	
	document.getElementById("bodyInner").style.width = w;
	document.getElementById("bodyInner").style.height = h;
	
	if(w == "100%" && h == "100%"){
		document.body.style.overflow = "hidden";
	}else{
		document.body.style.overflow = "auto";
	}
}

