function vidscreenwidth() {
  var vidscreenwidth = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    vidscreenwidth = window.innerWidth;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    vidscreenwidth = document.documentElement.clientWidth;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    vidscreenwidth = document.body.clientWidth;
  }
return vidscreenwidth;
}

/*document.write( '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '); 
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
document.write('width="')+vidscreenwidth+('" height="1434" id="clouds" align="absbottom">');
document.write('<param name="movie" value="clouds.swf" />');
document.write('<param name="quality" value="high" /> ');
document.write('<param name="menu" value="false" /> ');
document.write('<param name="bgcolor" value="#FFF8EE" /> ');*/
myvd = vidscreenwidth()-17;
if (myvd > 1900)
{
	myvd = 1900;
}
if (myvd < 993)
{
	myvd = 993;
}



//alert(myvd);
document.write('<embed src="clouds.swf" wmode="transparent" menu=false bgcolor=#FFF8EE width="'+myvd+'" height="1434" align="absbottom" quality="high" ');
document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"  ');
document.write('type="application/x-shockwave-flash"></embed>');
