$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#toggle').hide();
 // toggles the slickbox on clicking the noted link
  $('a#slick-toggle').click(function() {
 $('#toggle').toggle(400);
 return false;
  });
});

function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}
function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}
function confirmation(text, url) {
	var answer = confirm(text)
	if (answer){
		window.location = url;
	}
}
//-->