function ax_info()
{
	alert("test");
}

function write_Flash(width,height,src)
{	

var str="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" "
	str+="codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" ";
	str+="width=\""+width+"\" height=\""+height+"\" style=\"position:relative; left: 0px;\">";		
    str+="<param name=\"movie\" value=\""+src+"\">";	
    str+="<param name=\"quality\" value=\"high\">";	
    str+="<embed src=\""+src; 
	str+="\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" "; 
	str+="width=\""+width+"\" height=\""+height+"\"> </embed></object>";
	
	document.write(str);	
}

function write_WMP(id,width,height,src)
{	
	var str="<object id=\""+ id +"\" width=\""+width+"\" height=\""+height+"\" style=\"position:relative; left: 0px;\" classid=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" type=\"application/x-oleobject\">";		
   	str+="<param name=\"URL\" value="+ src + ">";
    str+="<param name=\"SendPlayStateChangeEvents\" value=\"True\">";
    str+="<param name=\"AutoStart\" value=\"false\">";
    str+="<param name=\"uiMode\" value=\"full\">";
    str+="<param name=\"PlayCount\" value=\"9999\">";
	str+="<param name=\"enabled\" value=\"true\">";
	str+="<PARAM NAME=\"ShowControls\" Value=\"true\">";
	str+="</object>";	
	
	document.write(str);	
}