//258/425 = movie_width/movie_height
//.607 = movie_width/movie_height
//.607 * movie_height = movie_width
//movie_height = movie_width / .607

var client_x = window.screen.availWidth;
var client_y = window.screen.availHeight;
if(client_x < 1024){
	//alert('This site is best viewed at 1024x768 Resolution');
}else{
	//Dynamically size movie by width
	movie_width = (client_x / 4);
	movie_height = (movie_width / .607);
	//Dynamically size Movie by height
	//movie_height = client_y - 350;
	//movie_width = .607 * movie_height;
	
	document.write('<div style="height:' + movie_height + 'px;">');
	document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + movie_width + '" height="' + movie_height + '" align="right">');
	document.write('            <param name="movie" value="/images/RightMovie.swf">');
	document.write('            <param name="quality" value="high">');
	document.write('			<param name="wmode" value="opaque">');
	document.write('            <embed src="/images/RightMovie.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + movie_width + '" height="' + movie_height + '" align="right"></embed>');
	document.write('          </object>');
	document.write('</div>');
}
