<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<script>
var w;
var tempstr=""
function debug(msg)
{
    if  (w==null)
    {
           var w=window.open("","win1","width=600,height=300,resizable");
           var t=w.document.open("text/plain");
 }
 tempstr = tempstr + msg + " ";
 t.write(tempstr);
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<input type="button" name="button1" value="push me" onclick="debug('you have push me');">
</body>
</html>
</BODY>
</HTML>