function swfPrint(){
	var chs = Math.random()*65000;
	var param = 4;
	var thisW = 300;
	var thisH = 250;
	var serverURL = "http://media.asahi.com/";
	var thisURL = "media_asahi";
	var sTag = ''
		+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+thisW+'" height="'+thisH+'">'
		+ ' <param name="movie" value="'+serverURL+thisURL+'.swf?site='+param+'">'
		+ ' <param name="noCache" value="'+chs+'">'
		+ ' <param name="quality" value="high">'
		+ ' <embed src="'+serverURL+thisURL+'.swf?site='+param+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+thisW+'" height="'+thisH+'"></embed>'
		+ '	</object>'
		+ '';
	document.write (sTag);
}

swfPrint();
