function jsAlert(message)
{
	alert(message);
}
function callExternalInterface() {
 if (navigator.appName.indexOf("Microsoft") != -1) {
 window["myContent"].sendToActionScript();
 } else {
 document["myContent"].sendToActionScript();
 } 
} 
function checkCommunication(){
	callExternalInterface();
	}
function load(URL) {
var load = window.open(URL,'','status=1');
}
	
	
