function showbasic(){$('#basic').show();$('#product').hide();$('#productissue').hide();$('#cantfindproduct').hide();$('#productissuedetails').hide();}function showproductissue(){$('#basic').show();$('#product').show();$('#productissue').show();$('#productissuedetails').show();$('#cantfindproduct').hide();}function showcantfindproduct(){$('#basic').show();$('#product').show();$('#productissue').hide();$('#productissuedetails').hide();$('#cantfindproduct').show();}function toggleCan(){$('#canbottom').slideToggle('slow');return false;}function shownews(p_what){if(p_what=='all'){$('.newsitem').show();}else{$('.newsitem').hide();$('.'+p_what).show();}return false;}function onNatureOfEnquiry(){if($('select#nature_of_enquiry').val()==2){showcantfindproduct();}else if($('select#nature_of_enquiry').val()==3){showproductissue();}else{showbasic();}}function checkdate(){if(($("select#dateday").val()!='')&&($("select#datemonth").val()!='')&&($("select#dateyear").val()!='')){$('li#date').addClass('showCheck');}else{$('li#date').removeClass('showCheck');}}function toggleDate(){if($('#date_not_applicable').is(':checked')){$('select#dateday').val('').closest('li').removeClass("showCheck");$('select#datemonth').val('').closest('li').removeClass("showCheck");$('select#dateyear').val('').closest('li').removeClass("showCheck");$('div.date .element').hide();$('li#date').addClass('showCheck');$('#date_not_applicable').closest('li').addClass("showCheck");}else{$('#date_not_applicable').closest('li').removeClass("showCheck");$('div.date .element').show();checkdate();}}
