/***************************************************
		Admin Delete Message
***************************************************/

function deleteConfirmMsg(where,msg) { //v1.0
		var answer = confirm (msg);
			if (answer)
				window.location=where;/**/
		
	}
/***************************************************
		Search
***************************************************/	
function ChangeSearchValue (event, input) {
	if (event.type.toLowerCase () == "focus") {
		if (input.value == "Search...") {
			input.value = "";
			input.style.color = "#323232";
		}
	} else {
		if (input.value == "") {
			input.value = "Search...";
			input.style.color = "#929292";
		}
	}
}
/***************************************************
		Subscribe
***************************************************/	
function ChangeSubValueName (event, input) {
	if (event.type.toLowerCase () == "focus") {
		if (input.value == "First Name") {
			input.value = "";
			input.style.color = "#323232";
		}
	} else {
		if (input.value == "") {
			input.value = "First Name";
			input.style.color = "#929292";
		}
	}
}

function ChangeSubValueEmail (event, input) {
	if (event.type.toLowerCase () == "focus") {
		if (input.value == "Email") {
			input.value = "";
			input.style.color = "#323232";
		}
	} else {
		if (input.value == "") {
			input.value = "Email";
			input.style.color = "#929292";
		}
	}
}
