// JavaScript Document
function toJava(jsmethod,args) {
	var e = document.getElementById('VoipApplet');
	e.fromJS(jsmethod,args);
}
function fromJava(jsmethod,args) {
	setTimeout("flashCall(\'" + jsmethod + "\', \'" + args + "\')", 100);
}
function flashCall(jsmethod, args) {
	var e = document.getElementById('flashtest');
	e.fromJS(jsmethod, args);
}
