
///This is for the product detail page, it will display an alert if a file is not seleced for upload.
var NoFileUpload =
{
init: function()
    {
  var notice = document.getElementById("ctl00_ContentPlaceHolder1_lblUploadInstructions");
 	var color = notice.style.color;
	notice.style.display = "none";
 	if (color == "Red" || color == "red" || color == "#ff0000"){
 			alert('This Product Requires that you upload a file. Please select your file or files to be uploaded for this order and then click "Add to Cart."');
 		}
  
}
};
Core.start(NoFileUpload);
