/*
Author: Anthony Ogundipe
Date: Earlier March 2009
Website: http://www.mwebng.net/
E-mail: support@mwebng.net, diltony@yahoo.com
Phone:+234-(0)7030290746
source: Free to use, just add this notice, thank you
Download code from: http://www.mwebng.net?net=dl
*/
function sendData(form,s) {
 var d=document.createElement('DIV');
 document.body.appendChild(d);  
 d.style.cssText+="width:100%;height:50px;display:none";
 var sid="frame_"+Math.random()+"_"+Math.random( );
 d.innerHTML="<iframe width='100%' name='"+sid+"' height='50'></iframe>";

 var l=document.getElementsByName(sid);var frm=l[l.length-1];
   
var timerx=setInterval(
function() {
if(frm.contentWindow.location.href.indexOf("http://")==0) {
clearInterval(timerx);


var response={title:'title',location:'location',innerHTM:'innerHTML'};
response.location=frm.contentWindow.location.href;
response.title=frm.contentWindow.document.title;
response.innerHTML=frm.contentWindow.document.body.innerHTML;
response.window=frm.contentWindow;
response.document=frm.contentWindow.document;

s(response);
}
},500
);  
 form.target=sid;form.submit();
}