/***************************************************************
								fla outline clear
***************************************************************/



function view_flash(swf, o_width, o_height, e_width, e_height){
        var obj = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='" + o_width + "' height='" + o_height + "'>";
                obj = obj + "<param name='movie' value='" + swf + "'>";
                obj = obj + "<param name='quality' value='high'>";
                obj = obj + "<param name='wmode' value='transparent'>";                
                obj = obj + "<embed  src='" + swf + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + e_width + "' height='" + e_height + "' wmode='transparent'></embed>";
                obj = obj + "</object>";

                document.write(obj);
}

/***************************************************************
								quick clear
***************************************************************/

window.onscroll = function(){

	MoveMenu();
}

window.onresize = function(){
	MoveMenu();
}

function MoveMenu(){
	
	if (document.getElementById("movingMenu") != null){
	
	if (document.documentElement.scrollTop < 186 ){
	document.getElementById("movingMenu").style.top = 186;
	}else
	{
		document.getElementById("movingMenu").style.top = document.documentElement.scrollTop +0;
	
	}
	
	
	}
}


