/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var value;
var id;
$('document').ready(function(){
 $('form#s200').submit(function(){
     value = true;
   $('input').each(function(){
    if(this.value.indexOf("http")== -1 || this.value.indexOf("https")== -1){
        return true;
    }
    else{ value = false; alert("please remove http://");    }

 });
 if(value == false){
     return false;
 }
 })


});


