// Write SimplyRugs Header Flash Code
function GetFlashCode()
{
	var flvDataFile = "images/header/SimplyRugsHead.swf";
	var width = 293;
	var height = 72;
	var strFlashCode = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='" + width + "' height='" + height + "'>";
	var strFlashCode = strFlashCode + "  <param name='movie' value='" + flvDataFile + "'>";
	var strFlashCode = strFlashCode + "  <param name=quality value=high>";
	var strFlashCode = strFlashCode + "  <param name='wmode' value='transparent'>";
	var strFlashCode = strFlashCode + "  <embed src='" + flvDataFile + "' wmode='transparent' quality=high pluginspage='https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed>";
	var strFlashCode = strFlashCode + "  </object>"; 
	document.write (strFlashCode);
}