function check_all(){
if(jQuery('#all').attr('checked')!=true){
	jQuery('input:checkbox',document).each(function (i){if(i>0){this.checked='';}});
}else{
 jQuery('input:checkbox',document).each(function (i){if(i>0){this.checked=true;}});
}

}

function input_check(id,msg){
	if(!jQuery('#'+id).val()){
		jQuery('#msg').html(msg);jQuery('#'+id).focus();
		jQuery('#msg').fadeOut(3000);
		return true;
	}else{
		return false;
	}
}

function message(id,msg){
		jQuery('#'+id).html(msg);
		jQuery('#'+id).fadeOut(3000);
		return true;

}

function chkemail(a)
{	var i=a.length;
	var temp = a.indexOf('@');
	var tempd = a.indexOf('.');
	if (temp > 1) {
		if ((i-temp) > 3){
			
				if ((i-tempd)>0){
					return 1;
				}		
		}
	}
	return 0;
}

function fucCheckNUM(NUM)
{
	var i,j,strTemp;
	strTemp="0123456789";
	if ( NUM.length== 0)
		return 0
	for (i=0;i<NUM.length;i++)
	{
		j=strTemp.indexOf(NUM.charAt(i));	
		if (j==-1)
		{
			return 0;
		}
	}
	//is number
	return 1;
}