
	// Function to insert the A Tantot Resource
	function PlaceResource (ResourceRef, ValidationKey)
	{
		var Str = '';
		
		Str += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="100%">';
			Str += '<param name="movie" value="flash.php?r=' + ResourceRef + '&k=' + ValidationKey + '">';
			Str += '<param name="wmode" value="transparent">';
			Str += '<param name="base" value="../contentsup/' + ResourceRef + '/">';
			Str += '<param name="menu" value="false">';
			Str += '<embed src="flash.php?r=' + ResourceRef + '&k=' + ValidationKey + '" width="100%" height="100%" menu="false" base="../contentsup/' + ResourceRef + '/" wmode="transparent">';
			Str += '</embed>';
		Str += '</object>';
			
		document.write (Str);
	}