var jsReady = false;
var flashReady = false;
function init()
{	
	jsReady = true;
}
//init();
function JSisReady()
{
	return jsReady;
}

function onFlashReady()
{
	//alert("flashReady");
	flashReady = true;
	$('photo_blog').setStyle('visibility', 'visible');
	
}

function fromAS(value)
{
	document.form1.text1.value = value;
}

 function sendToAS(value)
 {
	 var m = getMovie("flashCont");
	 m.toAS(value);
 }
 
 function getMovie(movieName)
{
	 if (navigator.appName.indexOf("Microsoft") != -1) {
		 return window[movieName];
	 } else {
		 return document[movieName];
	 }
 }
