function winOpen(link){
	helpWin = window.open(link,'edit','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=560,height=480');
}
function content(ids,val){
	//alert (ids.value);
	if($('#'+ids).val()==val){
		$('#'+ids).val('');
	}
}

function checkS(){
	if($('#c123').is(':checked')){
		document.getElementById('order').submit();
	}else{
		alert('You have to agree to TERMS & CONDITIONS');
	}
}