function viewParseTable(){
  var url = document.getElementById('keyword').value;
  var turing = document.getElementById('Turing').value;
  var url_check = 1;
  var turing_check = 1;
  if(url == '') {
  	alert("Please enter the full address for your site (without http://)");
  	url_check = 0;
  }
  if(turing == '') {
  	alert("Please enter the text from the Verification Image");
  	turing_check = 0;
  }
  if(turing_check == 1 && url_check == 1) {
    xajax_viewParseTable(''+url+'', ''+turing+''); 
  }
}

function viewParseTableContinue(url, turing, act, cnt, template_url, is_first, type){
  if(is_first == 1) {
  	window.document.getElementById('status').innerHTML = "<img  width=\"80\" height=\"12\" src=\""+template_url+"/images/seo_progress_bar.gif\" title=\"Searching...\">";
  	window.document.getElementById('status_text_1').style.display = "";
  	window.document.getElementById('status_text_1').value = "The length of content file is <span id=\"status_text\"></span> symbols.";
  }
  window.document.getElementById('status_text').innerHTML = cnt;
  xajax_viewParseTable(''+url+'', ''+turing+'', act, cnt, type);
}

function submitSelectSignup() {
	var sel = window.document.getElementById('xml_html_result').value;
	if (sel == "XML") {
		xajax_LoadingFormXml();
	}
	else {
		xajax_parse_html();
	}
	return false;
}
function submitXmlSignup(url){
	xajax_createSiteMap(xajax.getFormValues("xmlForm"), url);
}
