// <![CDATA[

function reSize (){
		
	var winW = 630, winH = 460;

	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth;
	  winH = window.innerHeight;
	  
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth;
	  winH = document.body.offsetHeight;
	 }
	}
		
	if(document.all && !document.getElementById) {
		
		document.all['website'].style.pixelWidth = ( winH + ( (40*winH)/100 ) )+'px';
		document.all['website'].style.pixelHeight = ( winH ) + 'px';
		
		document.all['flashcontent'].style.pixelWidth = ( winH + ( (40*winH)/100 ) )+'px';
		document.all['flashcontent'].style.pixelHeight = ( winH ) + 'px';
	
    }else{
		
		document.getElementById('website').style.width = ( winH + ( (40*winH)/100 ) )+'px';
		document.getElementById('website').style.height = ( winH  )+'px';
		
		document.getElementById('flashcontent').style.width = ( winH + ( (40*winH)/100 ) )+'px';
		document.getElementById('flashcontent').style.height = ( winH  )+'px';
		
    }
  
}

window.onload = reSize;
window.onresize = reSize;

// ]]>