Source code for /src/load_test.html.txt

//======================================================================//
// Author: Mark Qian <markqian@hotmail.com>                             //
// WWW: http://www.coolshare.com                                        //
// Copyright (c) 2006, Mark Qian                                        //
//                                                                      //
// You must contact Mark Qian to get a permission of use                //
// in case you want to make any use of the codes except viewing it     //
// on Mark's site.                                                      //
//======================================================================//


<h3>This is a page from RemoteScriptGuru.com</h3>
<img src="http://RemoteScriptGuru.com/RemoteScriptGuru/images/floor.gif">
<input type=button value="call method 'callMe' at page level" onclick="callMe('div_d')">
<script>
function callMeInDiv(m) {
 try {
  alert("Div_d2: hi, "+m+", I got your call");
  } catch (err) {
   alert("Error: "+err.description);
 }
}
</script>