	function sphider()
	{
		setframe();
	}
    function setframe()
    {
        document.getElementById("content2").innerHTML = '';     
        var frm = document.createElement('iframe');
        frm.setAttribute('id','searchform');
        frm.setAttribute('name','searchform');
        frm.setAttribute('frameborder','0');
        frm.setAttribute('marginheight','0');
        frm.setAttribute('marginwidth','0');
        frm.setAttribute('vspace','0');
        frm.setAttribute('hspace','0');
        frm.setAttribute('scrolling','auto');
        frm.setAttribute('height','325');
        frm.setAttribute('width','550');
        frm.setAttribute('style','overflow-x: hidden');
        frm.setAttribute('src',"/sphider/search.php");              
        document.getElementById('content2').appendChild(frm);
    }
