// JavaScript Document


function writeFlashHighlight(){
	

// HTML to append the variables and embed the movie onto the page
var oeTag = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
+ 'WIDTH="718" HEIGHT="500"'
+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0">'
+ '<PARAM NAME="MOVIE" VALUE="http://mp.scrippsnetworks.com/hgtv/get_listed/getListedPacks.swf">'
+ '<PARAM NAME="QUALITY" VALUE="high">'
+ '<PARAM NAME="MENU" VALUE="false">'
+ '<EMBED SRC="http://mp.scrippsnetworks.com/hgtv/get_listed/getListedPacks.swf" '
+ 'WIDTH="718" HEIGHT="500"'
+ 'QUALITY="high"'
+ 'MENU="false"'
+ 'TYPE="application/x-shockwave-flash"'
+ 'PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">'
+ '</EMBED>'
+ '</OBJECT>';
// alert(oeTag); // Show the html being written to the page
document.write(oeTag);   // Write the HTML onto the page
}


// Write the Movie
writeFlashHighlight();
