var userMessages = new Array()


	userMessages[0] = "This item has been successfully added to your order."
	userMessages[1] = "You have already ordered this DVD in this format, so another one has not been added. If you do want more than one copy of this DVD you can change the quantity ordered by clicking the View Order button."
	userMessages[2] = "Sorry, that wasn't a number - please try again."
	userMessages[3] = ""		  
	userMessages[4] = ""
	userMessages[5] = ""
	userMessages[6] = ""	
	userMessages[7] = ""	
	userMessages[8] = ""	
	userMessages[9] = ""	
	userMessages[10] = ""

	
	
	
	
	
function checkForUserMessage()	{
	
	if(document.getElementById("userMessageIndex").value != "") {
		
		
	alert(userMessages[document.getElementById("userMessageIndex").value])	
		
	
	}		
	
	
	
	
}
