/* IO.JS */


//PROCESS  SCRIPT ON  SERVER
function io(data){
if(!window.passkey){passkey=''}
data=data+'&amp;passkey='+passkey;
script = new getscript(data);

script.makescript();// Make the  script
script.runscript(); // Run the  script
}

//CONTACT  SERVER
function getscript(url) {
this.url = url;
this.header = document.getElementsByTagName("head").item(0);
}

// MAKESCRIPT METHOD
getscript.prototype.makescript= function(){

this.newscript = document.createElement("script");
this.newscript.setAttribute("type", "text/javascript");
this.newscript.setAttribute("src", this.url);
}
 
//RUN SCRIPT
getscript.prototype.runscript= function(){this.header.appendChild(this.newscript);}


