// form functions begin

jQuery(document).ready(function() {
	jQuery("a.iframe").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});
});

function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
}

function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

function checkBox() {
	if (document.contest.cb1093ID7117.checked == false) {
		alert ('Please read and accept the terms of the contest.');
		return false;
	}
	else
	{
		return true;
	}
}