function isIdAvailable(val){
	var a = document.getElementById("avail");
	if(val){
		if(val.indexOf(" ") >= 0){
			with(a.style){
				textDecoration = "none";
				color = "red";
			}
	        		a.innerHTML = "Whitespace Not Allowed!";
			return;
		}
        		with(a.style){
		            textDecoration = "none";
            		color = "black";
        		}
        		a.innerHTML = "checking availability...";
	            ajax.callurl("process.php?action=idcheck&u=" + val, "lia");
        		ajax.obj = a;
    	}
	else
		a.innerHTML = '';
}

function isCollegeIdAvailable(val){
	var a = document.getElementById("avail1");
	if(val){
		if(val.indexOf(" ") >= 0){
			with(a.style){
				textDecoration = "none";
				color = "red";
			}
	        		a.innerHTML = "Whitespace Not Allowed!";
			return;
		}
        		with(a.style){
		            textDecoration = "none";
            		color = "black";
        		}
        		a.innerHTML = "checking availability...";
	            ajax.callurl("process.php?action=collidcheck&u=" + val, "lia");
        		ajax.obj = a;
    	}
	else
		a.innerHTML = '';
}

function isPriceAvailable(val){
	var a = document.getElementById("avail1");
	//var b = document.getElementById('discount');
	if(val){		
			with(a.style){
				textDecoration = "none";
				color = "black";
			}
			a.innerHTML = "checking price availability...";
			ajax.callurl("process.php?action=pricecheck&u=" + val, "chk");
			ajax.obj = a;
			//ajax.obj1 = b;
    	}
	else
		a.innerHTML = '';
}
