function popup(url, name, width, height, top, left, bars)
{
	settings= "toolbar=no,location=no,directories=no,"+"status=no,menubar=no,scrollbars="+bars+","+
	"resizable=no,width="+width+",height="+height+",top="+top+",left="+left+"";
	MyNewWindow=window.open(url,name,settings);
}
function checkForm(form)
{
	if (form.message.value == "") {
		alert("Please enter a message...");
		return false;
	}
	if (form.verification.value != "33357") {
		alert("Please enter the verification code!");
		return false;
	}
}
function checkConfirmation()
{
	var conf = confirm("Are you sure you want to delete this event?");
	if(!conf){
		return false;
	}
	return true;
}