//js file by jessealess, 2008	http://darkandtwistedmyspace.com

/****************************************************/
//CHILLING HORROR GRAPHICS IMAGES
/***************************************************/

var chgList = new Array(12);
	chgList[0] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIbloodDrop1C.gif" alr="" />';
	chgList[1] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/anichatlft.gif" alr="" />';
	chgList[2] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIenter2C.gif" alr="" />';
	chgList[3] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIevilEye.gif" alr="" />';
	chgList[4] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIgargoyleLightningLtC.gif" alr="" />';
	chgList[5] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIgargoyleLightningRtC.gif" alr="" />';
	chgList[6] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/anighoul.gif" alr="" />';
	chgList[7] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIlanternC.gif" alr="" />';
	chgList[8] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIsevHead.gif" alr="" />';
	chgList[9] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIwelcomeC.gif" alr="" />';
	chgList[10] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/balt.gif" alr="" />';
	chgList[11] = '<img src="http://darkandtwistedmyspace.com/graphics/chg/bloodbar.gif" alr="" />';
//END OF ARRAY



/**********************************/
//	CONTACT FORM
/***********************************/

function DTform_check() {	//fn
var visName = document.forms[1].name.value;
var visEmail = document.forms[1].email.value;
var visResponse = document.forms[1].message.value;
if (visName == 0
|| visResponse == 0) {
	window.alert("What's Wrong With You? .");
	return false;
	}
else if (visEmail != 0
&& visEmail.indexOf("@") == -1) {
	window.alert("If You Include an Email, It Needs to be Valid. Idiot!");
	return false;
	}
return true;
}



/*************************************************************/
//	END
/****************************************************************/


/*		PHP STUFF
$chgList = array (
	1 => 'ANIbloodDrop1C.gif',
	2 => 'anichatlft.gif',
	3 => 'ANIenter2C.gif',
	4 => 'ANIevilEye.gif',
	5 => 'ANIgargoyleLightningLtC.gif',
	6 => 'ANIgargoyleLightningRtC.gif',
	7 => 'anighoul.gif',
	8 => 'ANIlanternC.gif',
	9 => 'ANIsevHead.gif',
	10 => 'ANIwelcomeC.gif',
	11 => 'balt.gif',
	12 => 'bloodbar.gif'
);	//END OF ARRAY

$chgList = array (
	1 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIbloodDrop1C.gif" alr="" />',
	2 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/anichatlft.gif" alr="" />',
	3 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIenter2C.gif" alr="" />',
	4 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIevilEye.gif" alr="" />',
	5 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIgargoyleLightningLtC.gif" alr="" />',
	6 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIgargoyleLightningRtC.gif" alr="" />',
	7 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/anighoul.gif" alr="" />',
	8 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIlanternC.gif" alr="" />',
	9 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIsevHead.gif" alr="" />',
	10 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/ANIwelcomeC.gif" alr="" />',
	11 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/balt.gif" alr="" />',
	12 => '<img src="http://darkandtwistedmyspace.com/graphics/chg/bloodbar.gif" alr="" />'
);	//END OF ARRAY
*/