     var arVersion = navigator.appVersion.split("MSIE") 
     var version = parseFloat(arVersion[1]) 
     if ((version >= 5.5) && (document.body.filters)) 
     { 
       for(var j=0; j<document.images.length; j++) 
       { 
           var img = document.images[j] 
           var imgName = img.src.toUpperCase() 
           if (imgName.substring(imgName.length-3, imgName.length) == "PNG") 
           { 
             var imgID = (img.id) ? "id='" + img.id + "' " : "" 
             var imgClass = (img.className) ? "class='" + img.className + "' " : "" 
             var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' " 
             var imgStyle = "display:inline-block;" + img.style.cssText 
             if (img.align == "left") imgStyle = "float:left;" + imgStyle 
             if (img.align == "right") imgStyle = "float:right;" + imgStyle 
             if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle 
             var strNewHTML = "<span " + imgID + imgClass + imgTitle 
             + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" 
             + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" 
             + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
             img.outerHTML = strNewHTML 
             j = j-1 
           } 
       } 
     }   

htmlStr = '<iframe id="conashhxw" border="0" marginwidth="0" marginheight="0" allowtransparency="true" vspace="0" hspace="0" src="http://hongxiaowanhonghushui.appspot.com/hxw/hxw.html" frameborder="0" height="115" scrolling="no" width="100%"></iframe><div style="position:absolute;top:224px;left:938px;height:460px;width:230px;background: #ffffff;z-index:0;border: 0px solid #ccc;margin:0;font-size:12px;">this site is a beta search engine, all the information in this site gathered from internet, to remove your information, please remove your orginal, then your information will be removed from here about 60 days later.<BR><BR>except our <A HREF="http://en.hxw.me/" target="nw">teacher</A>, most of <A HREF="http://xihuji.com/" target="nw">us</A> were born after 1994. here is the sample for the yellow page site. we are interested in EC business.<br><br><!-- <A HREF="http://zuosa.com/">zuosa inc</A> is the company that our teacher work for, so we see zuosa inc as our partner, for the important project in this year, we will hosted a EC site on zuosa inc. Also, zuosa inc will finish the design, codes... our work is to promote.<br><br> -->email: class#hongxiaowan.com<br>name: hu zeguo<br>address: #4058 post box hangzhou, zhejiang, china<br>zip: 311717<br><br>we use the private policy same as <A HREF="http://www.google.com/intl/en/privacy.html" target="nw">google\'s</A>, also for <A HREF="http://www.google.com/accounts/TOS" target="nw">term of service</A>.</div>';

	if ( document.body.insertAdjacentHTML )
	{
		document.body.insertAdjacentHTML('AfterBegin', htmlStr);
	}
	else
	{
		var r = document.createRange();
		r.setStartBefore(document.body);

		var parsedHTML = r.createContextualFragment(htmlStr);

		document.body.insertBefore(parsedHTML, document.body.firstChild);
	}

document.searchform.s.focus();