function messageAlert(alertText) {
	alert(alertText); 
}

function setBG(targetDIV,imageURL,imageRepeat)
{
 var element = document.getElementById(targetDIV);
 element.style.background = "url("+imageURL+")";
 element.style.backgroundRepeat = imageRepeat;
}
