function importScriptJS(url){
	var head = document.getElementsByTagName('head')[0];
   var script = document.createElement('script');
   script.type = 'text/javascript';
   script.src = url;
   head.appendChild(script);
}
function importScriptCSS(url){
	var head = document.getElementsByTagName('head')[0];
    var fileref=document.createElement("link");
   	fileref.setAttribute("rel", "stylesheet")
 	fileref.setAttribute("type", "text/css")
  	fileref.setAttribute("href", url)
	head.appendChild(fileref);
}
window.onload = function(){
    // imports go here
	//importScriptJS("http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js");
	//importScriptJS("https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js");
	importScriptJS("http://www.thaiwebaccessibility.com/apps/script_gadget.js");
	//importScriptCSS("http://www.thaiwebaccessibility.com/sites/all/themes/thaiwebaccessibility/jquery-ui-1.8.16.custom.css");
	importScriptCSS("http://www.thaiwebaccessibility.com/apps/gadget.css");
	
	document.getElementById('gadget').innerHTML = '<label class="lb_gadget" for="twebacc">URL ของหน้าเว็บ :</label><input class="textInput" id="twebacc" size="35" name="twebacc" type="text"  onkeypress="handleEnter(this, event)"/> <a href="#" class="check-button"  onclick="JavaScript:go_validate();">ตรวจสอบ</a><a href="http://www.thaiwebaccessibility.com/" title="ThaiWebAccessibility.Com"><span class="gadget-powerby"></span></a>';	
};


