
function AJAX_init(){var xmlHttp=null;try{xmlHttp=new XMLHttpRequest();return xmlHttp;}catch(e){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");return xmlHttp;}catch(e){try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");return xmlHttp;}catch(e){return false;}}}}
function SearchSkill(keyword,results,mobi){try{var xmlHttp=AJAX_init();xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==4){results.innerHTML=xmlHttp.responseText;}}
xmlHttp.open("GET","http://dash.za.net/skills/search?keyword="+keyword,true);
xmlHttp.send(null);}catch(e){alert("Your browser does not support AJAX!");return;}}