function loadFlashFront(){
	var fo = new FlashObject("signo.swf", "feature", "800", "520", "7");
	//fo.addVariable("flashVarText", "this is passed in via FlashVars"); // this is always optional, but this example uses the variable and displays this text inside the flash movie	
 	fo.addParam("quality", "high");
 	fo.addParam("bgcolor", "#ffffff");
 	fo.addParam("loop", "true");
	fo.write("feature");
}

addToLoader("loadFlashFront()");
