function run(){	i=0;	z=0;	document.getElementById('result').innerHTML = '' ;	table = '<table cellpadding="0" cellspacing="0" border="0" class="out"><tr><td>';	table += '<table cellpadding="3" cellspacing="1" border="0" class="in" style="font-family:tahoma">';	table += '<tr><th>#</th><th>Domain</th><th>PR non-www</th><th>Valid non-www</th><th>PR www</th><th>Valid www</th>';	// table = '<table border=1>';	f();	return false;}function f(){	var lim = document.getElementById('limit').value;	var dom = document.getElementById('domains').value;	var split = dom.split("\n")	var n = split.length;	if(i<n){		if(split[i].length>0){			domain = split[i].toLowerCase().replace('http://','').replace('https://','').replace(' ','');			z++;			jQuery.get('func.php?domain='+domain+'&limit='+lim+'&num='+z,false,function(data){				table += data;				document.getElementById('result').innerHTML = table ;			});		}		i++;		setTimeout( f, 3000 );	}else{		document.getElementById('result').innerHTML += '</table></td></tr></table>' ;	}}
