Multiple URL Opener Free Online Seo Tool Embed Code

Embed Code Of Multiple URL Opener Free Online Seo Tool This is a online seo tool to open multiple URLs at a time. We provide this tools EMBED CODE for yours website for free.











Just Copy The Below Code And Paste It Where You Like To Be.
<form action="" method="post" name="test">
<textarea cols="84" id="list_urls" name="list_urls" rows="15"></textarea>
<input id="num_tabs" name="num_tabs" size="2" type="hidden" value="1000" />
<input class="submit" onclick="open_all();" type="button" value="Click Here To Open URLs" />
<input type="reset" value="Reset" />&nbsp;</form>
<form action="" method="post" name="test"></form>
<script> 
function openall() {
}
function open_all(){
var urls = document.getElementById("list_urls").value;
var urls = urls.split('\n');
var totalno = urls.length;
var s;
for(var i=0;i<totalno;i++){
s = urls[i];
if(s){
if(s.substr(0,7)!='http://') s = 'http://'+s;
window.open(s);
}
}
return false;
}
 </script>