function IP(a) { a = a.split('.'); for(i=0; i<a.length; i++) if(!a[i] || a[i] > 255) return false; return true; }