// Generate a Random Number
var randomnumber = Math.round(Math.random()*2);

// Select a movie and execute the corresponding function
if (randomnumber == 1)

{movie1();}

else {movie2();}

//Functions to write out the correct flash movie resource.

function movie1(){
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=\"740\" height=\"179\"><param name=movie value=\"http://www.thyssenkrupp.com/lib/flash/home/fahrtreppen_en.swf\"><param name=quality value=high><embed src=\"http://www.thyssenkrupp.com/lib/flash/home/fahrtreppen_en.swf\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"740\" height=\"179\"></embed></object>")
}

function movie2(){
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=\"740\" height=\"179\"><param name=movie value=\"http://www.thyssenkrupp.com/lib/flash/home/twin_en.swf\"><param name=quality value=high><embed src=\"http://www.thyssenkrupp.com/lib/flash/home/twin_en.swf\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"740\" height=\"179\"></embed></object>")
}