function loadjsfile
(JSfileName) {
	var js = document.createElement('script');
	js.type = 'text/javascript';
	js.src = JSfileName;
	js.onreadystatechange = function() {
		// IE
		if ( js.readyState == 'complete' || js.readyState == 'loaded' ) {
		  	 createFlash()
		}
	};
	js.onload = function() {
	// FF
	 	 createFlash();
	};
	   document.getElementsByTagName("head")[0].appendChild(js); 
	
}

 
    document.write("<table  style='border-width: 1px; border-color:#c1c1c1;border-style: solid;' >");
	document.write("<tr><td><a href='http://www.osischool.com'><b>www.osischool.com</b></a></td></tr>");
	document.write("<tr><td>")
    document.write("<div  id='osischooldiv'><font size='1'>Please wait...</font></div>")
    document.write("</td></tr>")
    document.write("</table>")
    
    onLoad=loadjsfile('http://www.osischool.com/elab/echoScript.php?tid='+tID+"&url="+window.location);






 

