// JavaScript Document
function Cache(action){
	if(action.indexOf("?") < 0){
		var	parameter = '?';
	}else{
		var parameter = '&';
	}  
	return action+parameter+'cache='+Math.random();
}
function chk_style(style){
	if(!style){
		return 'blind';// Defalut Style
	}else{
		return style;
	}
}
function AjaxPage(div_id,action,style){
		$("#"+div_id).load(Cache(action)).show(chk_style(style),500);
}

function NewDesign(data){
		if(data=="New-Design Website"){
			AjaxPage('sub_label','service_page.php?type=ND','slide');
		}else if(data=="Other Type"){
			AjaxPage('sub_label','service_page.php?type=OTS','slide');
		}else{
			$('#sub_label').hide('slow');
		}
}

function ChkData(){
		if($('#cus_name').val()==""){
			alert('Please Input name');
			$('#cus_name').focus();
		}else if($('#code_tel').val()==""){
			alert('Please Input Telephone');
			$('#code_tel').focus();
		}else if($('#email').val()==""){
			alert('Please Input you email');
			$('#email').focus();
		}else{
			document.webForm.submit();
		}	
}