//Scroll Bar Color Changer
function changeScrollbarColor(C) {
if (document.all) {
document.body.style.scrollbarBaseColor = C;
   }
}

function disableForm(theform) {
if (document.all || document.getElementById) {
for (i = 0; i < theform.length; i++) {
var tempobj = theform.elements[i];
if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
tempobj.disabled = true;
}
setTimeout('alert("Your request has been submitted.\n\nPlease wait... it will not take long to process.")', 3000);
return true;
}
else {
alert("The form has been submitted.");
return false;
   }
}


function AskDelete(){

	if (window.confirm('You are about to DELETE this Item!\n\nPress OK to continue...'))
	{
	 	return true;
	}

	return false;

}

function DeletePicture(){

	if (window.confirm('You are about to DELETE this Picture!\n\nPress OK to continue...'))
	{
	 	return true;
	}

	return false;

}