var href = document.location.href; $(function() { $('.date-pick').datePicker().val(new Date().asString()).trigger('change'); }); function rateclick (par) { var stars_1 = document.getElementById("stars_1"); var stars_2 = document.getElementById("stars_2"); var stars_3 = document.getElementById("stars_3"); var stars_4 = document.getElementById("stars_4"); var stars_5 = document.getElementById("stars_5"); var stars_any = document.getElementById("stars_any"); if (stars_1 != null && stars_2 != null && stars_3 != null && stars_4 != null && stars_5 != null && stars_any != null) { if (par == 'stars_1') { stars_any.checked = null; } else if (par == 'stars_2') { stars_any.checked = null; } else if (par == 'stars_3') { stars_any.checked = null; } else if (par == 'stars_4') { stars_any.checked = null; } else if (par == 'stars_5') { stars_any.checked = null; } else if (par == 'stars_any') { stars_1.checked = null; stars_2.checked = null; stars_3.checked = null; stars_4.checked = null; stars_5.checked = null; } } } function rateonload () { var stars_1 = document.getElementById("stars_1"); var stars_2 = document.getElementById("stars_2"); var stars_3 = document.getElementById("stars_3"); var stars_4 = document.getElementById("stars_4"); var stars_5 = document.getElementById("stars_5"); var stars_any = document.getElementById("stars_any"); if (stars_1 != null && stars_2 != null && stars_3 != null && stars_4 != null && stars_5 != null && stars_any != null) { stars_any.checked = 'checked'; stars_1.checked = null; stars_2.checked = null; stars_3.checked = null; stars_4.checked = null; stars_5.checked = null; } }