function ShowSearch(destdiv) {  //alert(document.getElementById('ifrm').contentWindow.document.body.innerHTML);
document.getElementById(destdiv).innerHTML=document.getElementById('ifrm').contentWindow.document.body.innerHTML;

// Remove dynamic iframe to allow further searches
var Node = document.getElementById('ifrm');
var old = (Node.parentNode).removeChild(Node);
}

function GSearch(querystring,destdiv) {
// Generate iframe dynamically, the formal way...
var el = document.createElement("iframe");
el.setAttribute('id', 'ifrm');
el.setAttribute('src', 'search.php?q=' + querystring);
el.setAttribute('width', '0');
el.setAttribute('height', '0');
el.setAttribute('style', 'position: absolute; margin: -400px;'); 

if (el.attachEvent){
    el.attachEvent("onload", function(){
        //alert("Local iframe is now loaded - attachEvent IE...");
        ShowSearch(destdiv);
    });
} else {
    el.onload = function(){
        //alert("Local iframe is now loaded.");
        ShowSearch(destdiv);
    };
}
document.body.appendChild(el);
}


