///////////////////////////////////////////////////////////////////
//////        ImageBullet.com Javascript Functions           //////
///////////////////////////////////////////////////////////////////
function verifypw(form) {
pw1 = form.pass1.value;
pw2 = form.pass2.value;
agreeterms = form.agree.checked;
if (pw1 != pw2) {
alert ("The two passwords you entered don't match.")
return false;
}
else if (agreeterms == false)
{
  alert ("You didn't agree to the Terms of Use.");
  return false;
}
else return true;
}
/*
function confirmDelete(url)
{
  answer = confirm("Are you sure you want to delete the image? (This cannot be undone).");
  if(answer)
  {
    window.location = url;
	}
}
*/
