var DESTINATION_DIV_TAG = "flashcontent";
 
function randomXDigitNumber(size) {
 
    return Math.floor(Math.random() * (Math.pow(10,size)));
 
}
 
function whack(str_to_whack, num_chars_to_whack) {
 
    if (str_to_whack.length >= num_chars_to_whack) {
        return "";
    }
 
    return str_to_whack.substr(0, str_to_whack.length - num_chars_to_whack);
 
}
 
function showMovie(height) {
 
    // Fake default args.
 
    var height = (height == null) ? 0 : height;
 
    // set a flag as to whether this is the first time through (with no height)
    // or the second (with height already calculated and passed back in.)
 
    flag = "true";
 
    if (height == 0) {
 
        flag = "false";
 
    }
 
    random = randomXDigitNumber(6);
 
    var movie_url = "football_hospitality_files/1_1.swf?r=" + random + "&flag=" + flag;
 
    var so = new SWFObject(movie_url, DESTINATION_DIV_TAG, 300, height, "6", "#FFFFFF");
	//var so = new SWFObject(movie_url, DESTINATION_DIV_TAG, 150, height, "6", "#0F1D4E");
 
    so.write(DESTINATION_DIV_TAG);
 
}