// JavaScript Document
function displayFlash(movie)
{
	switch(movie)
	{
		case "representationChart":
			document.write('<embed src="/Portals/2/Skins/allsupinsider/flash/AllsupRepChart_final.swf" width="720" height="640" scale="ShowAll" play="true" loop="true" menu="true" wmode="Window" quality="1" type="application/x-shockwave-flash"></embed>');
			break;
			
		default: 
			document.write('Error');
	}
}

// To avoid background image flickering in IE 6.  
try 
{  
    document.execCommand("BackgroundImageCache", false, true);  
}  
catch(err) {}

