/* OMG make javascript functions returned by ajax parse-able by adding them to the DOM! */
function parseScript(_source) {
	var source = _source;
	var scripts = new Array();
	
	// Strip out tags
	while(source.indexOf("<script") > -1 || source.indexOf("</script") > -1) {
		var s = source.indexOf("<script");
		var s_e = source.indexOf(">", s);
		var e = source.indexOf("</script", s);
		var e_e = source.indexOf(">", e);
		
		// Add to scripts array
		scripts.push(source.substring(s_e+1, e));
		// Strip from source
		source = source.substring(0, s) + source.substring(e_e+1);
	}
	
	// Loop through every script collected and eval it
	for(var i=0; i<scripts.length; i++) {
		try {
			eval(scripts[i]);
		}
		catch(ex) {
			// do what you want here when a script fails
		}
	}
	
	// Return the cleaned source
	return source;
	
	alert('source')
}


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  // eval(targ+".location.href='http://dna.asteriks-dev.co.uk/"+selObj.options[selObj.selectedIndex].value+"'");
  eval(targ+".location.href='http://www.dnakids.co.uk/"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function showpuzzle(thetype){
	if (window.XMLHttpRequest) {
		liveSearchReq = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		liveSearchReq = new ActiveXObject("Microsoft.XMLHTTP");
	}
	var thetime= "&thetime="+new Date().getTime();
	liveSearchReq.open("GET","getpuzzlee.html?flashsrc="+thetype+thetime,false);
	liveSearchReq.send(null);

	if (liveSearchReq.readyState == 4) {
		var  res = document.getElementById("puzzlediv");
		res.innerHTML = parseScript(liveSearchReq.responseText);
	}
}

/* for the region map */
var startzindex = '2';

function resetto(targetName)
{
	document.getElementById(targetName).style.zIndex = startzindex;
	startzindex++;
}