//Detecting FlashPlayer from your system
con = getVersion();
con = con.substring(3, con.indexOf(","));
if (con.charAt(0) == " ") {
con = con.charAt(1);
}
con = Number(con);
if (con<6) {
trace( "Your system doesn't have FlashPlayer6");
getURL("http://www.macromedia.com", "_blank");
} else {
nextFrame();
}









