function axblaster(id,html) {
/*
	Use this for writing Object Html code to a (div) id
	Or dont update your IE browser to surf without x warnings
	June 2006 - scripts.titude.nl
	Use freely with this comment included ( or dont use it )
	Sample use: 
        <div id="flashmovie"> Some search engine index text if you want </div>
	<script type="text/javascript">
		code = '<object width="100%" height="100%" id="xmovie">';
		code += '<param name="movie" value="mymovie.swf">';
		code += '<embed src="mymovie.swf" quality="high" width="100%" height="100%" name="movie">';
		code += '</embed></object>';
	      	axblaster("flashmovie",code);
	</script>
*/
	if (id == undefined) { return false; }
	if (html == undefined) { var html =""; }
	if (document.layers && document.layers[''+id+'']){
	    var doc = document.layers[''+id+''].document;
  		doc.open(); doc.write(html); doc.close();
	} else if (document.all && document.all[''+id+'']) {
		document.all[''+id+''].innerHTML = html;
	} else if (document.getElementById && document.getElementById(''+id+'')) {
        document.getElementById(''+id+'').innerHTML = html;
	}
}


