var screenHeight = screen.height
var screenWidth = screen.width
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if (screenHeight <=850)
{
if (hasReqestedVersion)
{
var mainContent = '<body bgcolor="#411c0f">'
+ '<object data="WenMainScaled.swf" type="application/x-shockwave-flash" width="100%" height="100%"><param name="movie" value="WenMainScaled.swf" />'
+ '<param name="menu" value="false" /><param name="quality" value="high" /></object>';
document.write(mainContent);
}

else
{  
var alternateContent = '<body bgcolor="#b04c28" text="#2d140a" style="font-family:arial" link="#2d140a" vlink="#2d140a" alink="black">'
+ '<h1>Wen Yann Shih</h1><h3>Official home page</h3>'
+ 'To view, your Flash software must be updated.  Please download the latest version '
+ '<a href="http://www.adobe.com/go/getflash/" target="_blank">here</a>.<br>Once completed, please <a href="http://www.wenyannshih.com">enter</a>';
document.write(alternateContent);
}
}

else
{
if (hasReqestedVersion)
{
var mainContent = '<body bgcolor="#411c0f">'
+ '<object data="WenMainTrue.swf" type="application/x-shockwave-flash" width="1000" height="800"><param name="movie" value="WenMainTrue.swf" />'
+ '<param name="menu" value="false" /><param name="quality" value="high" /></object>';
document.write(mainContent);
}

else
{  
var alternateContent = '<body bgcolor="#b04c28" text="#2d140a" style="font-family:arial" link="#2d140a" vlink="#2d140a" alink="black">'
+ '<h1>Wen Yann Shih</h1><h3>Official home page</h3>'
+ 'To view, your Flash software must be updated.  Please download the latest version '
+ '<a href="http://www.adobe.com/go/getflash/" target="_blank">here</a>.<br>Once completed, please <a href="http://www.wenyannshih.com">enter</a>';
document.write(alternateContent);
}
}
