/* Created By: Steve Evans */
/* Copyright 2005 Steven W. Evans */

function new_window(address,winName,features) {
  window.open(address,winName,features);
}

function link_stat(txt){
  window.status=txt;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

/* Start Mailing List Validation */

function validatemailinglist() {
if (document.mailinglist.fname.value==""){
  alert("Please enter your first name.");
  mailinglist.fname.focus();
  return false;
  }
if (document.mailinglist.lname.value==""){
  alert("Please enter your last name.");
  mailinglist.lname.focus();
  return false;
  }
if (document.mailinglist.email.value==""){
  alert("You must enter a e-mail address!");
  mailinglist.email.focus();
  return false;
  }
}
/* End Mailing List Validation */

function toggle(whichOne) {
	
	if (document.getElementById(whichOne).style.display == 'none')
		document.getElementById(whichOne).style.display = '';
	else
		document.getElementById(whichOne).style.display = 'none';

}

window.defaultStatus="Downfall: Slaughtering Emo Kids Since 2005";

//Random Image Script
var sayings = new Array(
" ",
" ",
" ",
" ");
function getRandomNum(lbound, ubound) {
return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
}