
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Lost And Found</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Chargerback, Inc." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="Styles/Embed.css" />
<link rel="stylesheet" type="text/css" href="Styles/font-awesome.css" />
<link rel="stylesheet" href="/@materialIcons"/>
<link href="https://code.jquery.com/ui/1.12.1/themes/ui-lightness/jquery-ui.css" rel="stylesheet" type="text/css" />
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
<link href="https://www.chargerback.com/Styles/w3/w3-1.81.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="Scripts/Utility.js"></script>
<script type="text/javascript">

function handleEnter(ctrMove)
{
	var ctrMove;

	if(window.event.keyCode == 13)
	{
		event.srcElement.blur();
	}
}

String.prototype.decodeHTML = function () {
    var map = { "gt": ">", "nbsp": " ", "lt": "<" /* , … */ };
    return this.replace(/&(#(?:x[0-9a-f]+|\d+)|[a-z]+);?/gi, function ($0, $1) {
        if ($1[0] === "#") {
            return String.fromCharCode($1[1].toLowerCase() === "x" ? parseInt($1.substr(2), 16) : parseInt($1.substr(1), 10));
        } else {
            return map.hasOwnProperty($1) ? map[$1] : $0;
        }
    });
};

function checkHREF() {
    var textData;
    var ts;
    var ok = true;

    textData = document.getElementsByTagName("TEXTAREA");
    for (i = 0; i < textData.length; i++) {
        try {
            ts = decodeURIComponent(textData.item(i).value.decodeHTML()).replace(/\s/g, "").toLowerCase();
            if ((ts.indexOf("<ahref=") >= 0) || (ts.indexOf("http:") >= 0)) {
                ok = false;
            }
        } catch (e) {
            ok = false;
        }
        if (!ok) {
            // alert("One or more fields contain invalid characters!");
            boolOK = false;
            ctlEmpty = textData[i];
            return false;
        }
    }
    return true;
}

function addcode()
{
    var url;
    var pcitem =document.getElementById("Selectproductcode").value;
    var itemdescription=document.getElementById(pcitem).text;
    var OG = document.getElementById("overgroup").value;

    if (pcitem == '' || pcitem == null)
        return false;

    if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else
    {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }

    url = "CBAjax.asp?Action=AddPCCategoryTest&mFriendly=true&LorF=Lost&pc=" + pcitem + "&MatchID=" + document.getElementById("MatchID").value + "&OG=" + OG;
    xmlhttp.open("GET", url, false); 
    xmlhttp.send();

    if(xmlhttp.status==200)
    {
        response = xmlhttp.responseText;
        if(response.toString().length > 2)
        {
            var addmoreitems = "<br><a href='Javascript:void(0);' onclick='ShowProductCodes();'>Click To Add More Items&nbsp;&nbsp; <b><font style ='font-size:larger'>+</font></b></a>"
            document.getElementById("captionforselected").innerHTML="Item Details " + addmoreitems;
            document.getElementById("itemselected").innerHTML=response;     
            resetPC()
        }
        else
        {
            return false;
        }
    }
    else
    {
        //alert("Must be bad news");
    }
}

function ShowProductCodes()
{
    document.getElementById("ItemPicker").style.display="block";
}

function resetPC()
{
    document.getElementById("overgroup").value="";
    document.getElementById("Selectproductcode").value="";
    document.getElementById("overgroup").focus();
}

function Done()
{
    document.getElementById("overgroup").value="";
    document.getElementById("Selectproductcode").value="";
    document.getElementById("Items").focus();
}

function SelectPC()
{
    var pc = document.getElementById("Selectproductcode").value;

    document.getElementById("ProductCode").value=pc;
    addcode();
    GetCurrentItemSQLID();
    LoadPop();
    OpenPop();
    updateItemDescriptions();
}

function updateItemDescriptions()
{
    var url;
   
	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}

	url = "CBAjax.asp?Action=getCurrentDescriptionSet&MatchID=" + document.getElementById("MatchID").value + "&LC=" + document.getElementById("languageCode").value;
	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 0)
		{
			//alert(response);
			document.getElementById("Items").value=response;	
		}
		else
		{
			//alert("Must be bad news");
			return false;
		}
	}
	else
	{
	    //alert("Must be super bad news");
	}
}

function GetCurrentItemSQLID()
{
    var url;

	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}

	url = "CBAjax.asp?Action=getCurrentSQLID&MatchID=" + document.getElementById("MatchID").value;
	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 0)
		{
			document.getElementById("currentItemSQLID").value=response;	
		}
		else
		{
			return false;
		}
	}
	else
	{
	    //alert("Must be super bad news");
	}
}

function LoadPop()
{
    var url;
	var currentLostSQLID = document.getElementById("currentItemSQLID").value;

	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	url = "CBAjax.asp?Action=LoadPop&fromLost=true&PC=" + document.getElementById("ProductCode").value + "&currentLostSQLID=" + currentLostSQLID + "&CustomerID=" + document.getElementById("CustomerID").value + "&MatchID=" + document.getElementById("MatchID").value + "&LC=" + document.getElementById("languageCode").value;
    	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 0)
		{
			//alert(response);
			document.getElementById("itemAdditionalInfo").innerHTML=response;	
		}
		else
		{
			//alert("Must be  bad news");
			return false;
		}
	}
	else
	{
        //alert("Must be super bad news!!");
	}
}

function ClosePop()
{
    if(document.getElementById("PCPop"))
        document.getElementById("PCPop").style.display="none";
}

function OpenPop()
{
    document.getElementById("SaveItemDetails").innerHTML="Save Item Details";
    //document.getElementById("NextItem").style.display="none";
    //document.getElementById("DoneWithItems").style.display="none";

    document.getElementById("LaunchPop").click();
}

function EditPop(sqlid)
{
    //alert(sqlid);
    //document.getElementById("ProductCode").value=pc;
    getPCofSqlid(sqlid);
    document.getElementById("currentItemSQLID").value = sqlid;
    LoadPop();
    OpenPop();
}

function getPCofSqlid(sqlid)
{
    var url;

	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	url = "CBAjax.asp?Action=GetPCfromSQLID&SQLID=" + sqlid;
	 
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;
            
		if(response.toString().length > 0)
		{
			//document.getElementById("Category").innerHTML=response;	
			document.getElementById("ProductCode").value=response;
		}
		else
		{
			//alert("200");
			return false;
		}
	}
	else
	{
	   // alert("500");
	}	
}

function UpdatePopItemData()
{    
    var url;
	var currentLostSQLID = document.getElementById("currentItemSQLID").value;
	
	//document.getElementById("SaveItemDetails").innerHTML="<img src='images/prgress.gif'/>";
	if (checkHREF()) {
	    if(window.XMLHttpRequest)
	    {// code for IE7+, Firefox, Chrome, Opera, Safari
	        xmlhttp=new XMLHttpRequest();
	    }
	    else
	    {// code for IE6, IE5
	        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	    }
	    // alert("test-2");
	    
	    var intcolor;
	    if (document.getElementById("itemColor"))
	    {
	        intcolor = document.getElementById("itemColor").value;
	    }
	    else
	    {
	        intcolor=0;
	    }
    
	    var intcasecolor;
	    if (document.getElementById("itemCaseColor"))
	    {
	        intcasecolor = document.getElementById("itemCaseColor").value;
	    }
	    else
	    {
	        intcasecolor=0;
	    }
    
	    var intbrand;
	    if (document.getElementById("itemBrand"))
	    {
	        intbrand = document.getElementById("itemBrand").value;
	    }
	    else
	    {
	        intbrand=0;
	    }

	    var intmaterial;
	    if (document.getElementById("itemMaterial"))
	    {
	        intmaterial = document.getElementById("itemMaterial").value;
	    }
	    else
	    {
	        intmaterial=0;
	    }

	    var intcustomdd;
	    if (document.getElementById("itemCustom"))
	    {
	        intcustomdd = document.getElementById("itemCustom").value;
	    }
	    else
	    {
	        intcustomdd=0;
	    }
    
	    var strdescription;
	    if (document.getElementById("itemNote"))
	    {
	        strdescription = document.getElementById("itemNote").value;
	    }
	    else
	    {
	        strdescription="";
	    }
    
	    var strSerialNumber;
	    if (document.getElementById("itemSerialnumber"))
	    {
	        strSerialNumber = document.getElementById("itemSerialnumber").value;
    
	        if(/[^0-9a-zA-Z]/.test(strSerialNumber))
	        {
	            alert("Serial number must be letters and/or numbers only!");
	            //document.getElementById("SaveItemDetails").innerHTML = saved;
	            return;
	        }
	    }
	    else
	    {
	        strSerialNumber="";
	    }
        
	    //  alert("test-3");
  
	    url = "CBAjax.asp?Action=UpdatePop&fromLost=true&PC=" + document.getElementById("ProductCode").value + "&currentLostSQLID=" + currentLostSQLID + "&CustomerID=" + document.getElementById("CustomerID").value + "&MatchID=" + document.getElementById("MatchID").value + "&intcolor=" + intcolor + "&intcasecolor=" + intcasecolor + "&intbrand=" + intbrand + "&intmaterial=" + intmaterial + "&intcustomdd=" + intcustomdd + "&strdescription=" + strdescription + "&strSerialNumber=" + strSerialNumber;
	    //alert(url);
	    xmlhttp.open("GET", url, false); 
	    xmlhttp.send();

	    if(xmlhttp.status==200)
	    {
	        response = xmlhttp.responseText;

	        if(response.toString().length > 2)
	        {
	            //alert(response);
	            document.getElementById("SaveItemDetails").innerHTML="Updated";	
	            //document.getElementById("NextItem").style.display="block";
	            //document.getElementById("NextItem").style.cssFloat ="left";
			
	            //document.getElementById("DoneWithItems").style.display="block";
	            //document.getElementById("DoneWithItems").style.cssFloat ="left";
	            updateItemDescriptions();
	            //closepop();
	            document.getElementById("ItemPicker").style.display="none";
	            $('#myModal').modal('hide');
	        }
	        else
	        {
	            //alert("Must be  bad news");
	            return false;
	        }
	    }
	    else
	    {
	        //alert("Must be super bad news!");
	    }
	} else {
	    alert("One or more fields contain invalid characters!");
	}

}

function AddNextItem()
{
    document.getElementById("overgroup").focus();
}

function AutoClassify()
{
    var url;

	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	url = "CBAjax.asp?Action=Autoclassify&fromLost=true&itemdescription=" + document.getElementsByName("Items").item(0).value + "&MatchID=" + document.getElementById("MatchID").value;
	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 2)
		{
			document.getElementById("Category").innerHTML=response;	
		}
		else
		{
			return false;
		}
	}
	else
	{
	    //alert("Must be bad news");
	}	
}

function deletecode(sqlid)
{
    var url;
	 	
	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	url = "CBAjax.asp?Action=DeleteMatchCode&sqlid=" + sqlid;
	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 2)
		{
			document.getElementById("pc" + sqlid).style.display= "none";
			updateItemDescriptions();
		}
		else
		{
			return false;
		}
	}
	else
	{
    	//alert("");
	}
}

function loadproductcode()
{
    var url;
		
	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}

    document.getElementById("selectedOvergroup").value = document.getElementById("overgroup").value;
	url = "CBAjax.asp?Action=ShowProductCode&OverGroup=" + document.getElementById("overgroup").value + "&showstyle=" + encodeURIComponent(document.getElementById("showstyle").value) + "&LanguageCode=" + document.getElementById("languageCode").value;
	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 2)
		{			
			document.getElementById("pc").innerHTML=response;
		}
		else
		{
			return false;
		}
	}
	else
	{
    	//alert("");
	}
}

function Checkproductcode()
{
    var url;
    var pcitem;
    
    if(document.getElementById("Selectproductcode"))
    {
        pcitem =document.getElementById("Selectproductcode").value;
    }
    else
    {
        pcitem="0";
    }

	if(window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}

	url = "CBAjax.asp?Action=Checkproductcode&MatchID=" + document.getElementById("MatchID").value;
	
	xmlhttp.open("GET", url, false); 
	xmlhttp.send();

	if(xmlhttp.status==200)
	{
		response = xmlhttp.responseText;

		if(response.toString().length > 0)
		{			
			document.getElementById("Items").value = document.getElementById("Items").value + response;
		}
		else
		{
			if (pcitem == "0")
			{
			}
			else
			{
			    alert("Please select an item type");
			    document.getElementById("overgroup").focus();
			    return false;
			}
		}
	}
	else
	{
    	//alert("");
	}

    return SaveItem();	
}

function SaveItem()
{
    if (checkHREF()) {
        document.getElementById("Status").value = 1;
        document.PostItem.submit();
        return true;
    } else {
        alert("One or more fields contain invalid text!");
        return false;
    }
}

function showError(showerror)
{
    document.getElementById("errorhd").innerHTML="<span id='errortxt'><span class='c-fs c-fc' id='Info2'>(<font color='red'> *</font> Required)</span><br><br><span id='Info3'><font color='#cd0018'>Something went wrong</font></span><div class='c-fs c-fc' id='errinfo'>" + showerror + "</div><span class='c-fs c-fc' id='Info'>Information about your item</span>";
}

function CheckNotInList()
{
    var url;
    var pcitem;

    if(document.getElementById("Selectproductcode"))
    {
        pcitem =document.getElementById("Selectproductcode").value;
    }
    else
    {
        return true;
    }

    if(window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else
    {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }

    url = "CBAjax.asp?Action=CheckproductcodeNotInList&MatchID=" + document.getElementById("MatchID").value;

    xmlhttp.open("GET", url, false); 
    xmlhttp.send();
 
    if(xmlhttp.status==200)
    {
        response = xmlhttp.responseText;

        if(response.toString().length > 0)
        {   
            alert("Please Provide A Description For Your Lost Item");
            EditPop(response);
            return false;
        }
        else
        {
            //alert("nada");
            return true;
        }
    }
    else
    {
        return true;
        //alert("Trouble");
    }
}

function CheckRequired(btn)
{
    var pass=true;
    var strlink="";
    var errorcounter = 0;

    if (CheckNotInList())
    {
        //alert("All Good");
    }
    else
    {
        //alert("Not So Good");
        btn.disabled = false;
        return false;
    }

    if (document.getElementById("superCustomerID").value == "16338") {
        x = document.getElementById("selectedOvergroup").value;
        if (x==null || x=="" || x=="-1")
        {
            pass=false;
            //class="errorhighlight"
            document.getElementById("overgroup").className="errorhighlight";
            document.getElementById("ct114").className="errortitle";
            document.getElementById("ct114Error").style.display="block";
            strlink = strlink + "<li><a href='#overgroup'>Please select the type of item(s) you lost</a></li>";    
            errorcounter = errorcounter + 1;
        }

    }

    x= document.getElementById("LostDate").value;

    if (x==null || x=="")
    {
        pass=false;
        //class="errorhighlight"
        document.getElementById("LostDate").className="errorhighlight";
        document.getElementById("ct2").className="errortitle";
        document.getElementById("ct2Error").style.display="block";
        strlink = strlink + "<li><a href='#LostDate'>Date you lost your item is required</a></li>";    
        errorcounter = errorcounter + 1;
    }
    xinput = document.getElementById("LostDate").value;
    x = Date.parse(xinput);
    if (x > Date.now() || isNaN(x))
    {
    pass=false;
    //class="errorhighlight"
    document.getElementById("LostDate").className="errorhighlight";
    document.getElementById("ct2").className="errortitle";
    document.getElementById("ct2Error").style.display="block";
    strlink = strlink + "<li><a href='#LostDate'>The date you entered is invalid</a></li>";    
    errorcounter = errorcounter + 1;
    window.alert("'" + xinput + "'" + " is not a valid date")
    }
    if (document.getElementById("CustomDD_1"))
    {
        //alert("element exists on page");
        var y = document.getElementById("CustomDD_1").value;
        //alert(y);
        //do the check here
        if (y==null || y=="")
        {
            //alert("Incomplete information");
            pass=false;
            //document.getElementById("CustomDD_1").focus();
            strlink =  strlink + "<li><a href='#CustomDD_1'>Destination is required</a></li>";
            errorcounter = errorcounter + 1;
            document.getElementById("CustomDD_1").className="errorhighlight";
            document.getElementById("ct3").className="errortitle";
            document.getElementById("ct3Error").style.display="block";
            //return false;
        }
    }
  
    //guest
    x= document.getElementById("Room").value;

    if (x==null || x=="")
    {
        pass=false;
        //class="errorhighlight"
        document.getElementById("Room").className="errorhighlight";
        document.getElementById("ct5").className="errortitle";
        document.getElementById("ct5Error").style.display="block";
        strlink = strlink + "<li><a href='#Room'>Where you lost your item is required</a></li>";    
        errorcounter = errorcounter + 1;
    }

//FirstName
    var x = document.getElementById("FirstName").value;
    
    if (x==null || x=="")
    {
        //alert("First name must be filled out");
        //document.getElementsByName("FirstName").item(0).focus()
        pass=false;
        document.getElementById("FirstName").className="errorhighlight";
        document.getElementById("ct7").className="errortitle";
        document.getElementById("ct7Error").style.display="block";
        //Info2Firstname
        strlink = strlink + "<li><a href='#FirstName'>First name is required</a></li>";    
        errorcounter = errorcounter + 1;
        //return false;
    }

//LastName
var x = document.getElementById("LastName").value;
  
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("LastName").className="errorhighlight";
    document.getElementById("ct8").className="errortitle";
    document.getElementById("ct8Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#LastName'>Last name is required</a></li>";    
    errorcounter = errorcounter + 1;
    //return false;
    }
   //Emaillabel
   //Email
var x = document.getElementById("Email").value;
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("Email").className="errorhighlight";
    document.getElementById("ct10").className="errortitle";
    document.getElementById("ct10Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#Email'>Email address is required</a></li>";    
    errorcounter = errorcounter + 1;
    }
//Emaillabelconfirm
var x = document.getElementById("Email2").value;
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("Email2").className="errorhighlight";
    document.getElementById("ct148").className="errortitle";
    document.getElementById("ct148Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#Email2'>Email confirmation is required</a></li>";    
    errorcounter = errorcounter + 1;
    }
//phonenumber   Infophone
var x = document.getElementById("phonenumber").value;
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("phonenumber").className="errorhighlight";
    document.getElementById("ct9").className="errortitle";
    document.getElementById("ct9Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#phonenumber'>Phone number is required</a></li>";    
    errorcounter = errorcounter + 1;
    }
if (document.getElementById("CellProvider")){
  //we have cell provider
    var cell = document.getElementById("CellProvider").value;
    //alert(y);
    //do the check here
        if (cell==null || cell=="")
        {
        //alert("Please Select Your Cell Provider");
        //document.getElementById("CellProvider").focus();
        pass=false;
        document.getElementById("CellProvider").className="errorhighlight";
        var cellproviderlist = document.getElementById("CellProviders").innerHTML;
        //cellproviderlist = cellproviderlist + "<div style='display:block;' class='error' id='cellprovidererror'><font color='#C30019;'>Cell phone service provider is required.</font></div>";
        document.getElementById("CellProviders").innerHTML = cellproviderlist;
        //document.getElementById("InfoCellProvider").className="errortitle";
        document.getElementById("cellproviderError").style.display="block";
        strlink = strlink + "<li><a href='#CellProvider'>Service provider required to receive text message</a></li>";
        errorcounter = errorcounter + 1;
        //return false;
        }
  }  
  //Street
var x = document.getElementById("Street").value;
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("Street").className="errorhighlight";
    document.getElementById("ct11").className="errortitle";
    document.getElementById("ct11Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#Street'>Address is required</a></li>";    
    errorcounter = errorcounter + 1;
    }
var x = document.getElementById("City").value;
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("City").className="errorhighlight";
    document.getElementById("ct12").className="errortitle";
    document.getElementById("ct12Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#City'>City is required</a></li>";    
    errorcounter = errorcounter + 1;
    }

    if (document.getElementById("StateLabel").style.display == "inline")
        var x = document.getElementById("State").value;
    else
        var x = document.getElementById("Province").value;

    if (x == null || x == "")
    {
        pass = false;

        if (document.getElementById("StateLabel").style.display == "inline")
        {
            document.getElementById("State").className = "errorhighlight";
            document.getElementById("StateLabel").className = "errortitle";
            strlink = strlink + "<li><a href='#State'>State is required</a></li>";
        }
        else
        {
            document.getElementById("Province").className = "errorhighlight";
            document.getElementById("ProvinceLabel").className = "errortitle";
            strlink = strlink + "<li><a href='#Province'>Province is required</a></li>";
        }

        document.getElementById("ct13Error").style.display = "block";

        errorcounter = errorcounter + 1;
    } else {
        if (document.getElementById("StateLabel").style.display == "inline")
        {
            document.getElementById("State").className = "c-inp c-ifc";
            document.getElementById("StateLabel").className = "ship c-fc c-fs";
        }
        else
        {
            document.getElementById("Province").className = "c-inp c-ifc";
            document.getElementById("ProvinceLabel").className = "ship c-fc c-fs";
        }

        document.getElementById("ct13Error").style.display = "none";
    }

    var x = document.getElementById("PostalCode").value;
    if (x==null || x=="")
    {
    //alert("First name must be filled out");
    //document.getElementsByName("FirstName").item(0).focus()
    pass=false;
    document.getElementById("PostalCode").className="errorhighlight";
    document.getElementById("ct14").className="errortitle";
    document.getElementById("ct14Error").style.display="block";
    //Info2Firstname
    strlink = strlink + "<li><a href='#PostalCode'>Postal code is required</a></li>";    
    errorcounter = errorcounter + 1;
    }
var x = document.getElementById("Country").value;
    if (x==null || x=="")
    {
    pass=false;
    document.getElementById("Country").className="errorhighlight";
    document.getElementById("ct17").className="errortitle";
    document.getElementById("ct17Error").style.display="block";
    strlink = strlink + "<li><a href='#Country'>Postal code is required</a></li>";    
    errorcounter = errorcounter + 1;
    }
    //if (document.getElementsByName("Email").item(0).value; !== document.getElementsByName("confirmEmail").item(0).value;)
    //{
   // alert("Please confirm your Email address");
   // document.getElementsByName("confirmEmail").item(0).focus()
   // return false;
   // }
    x= document.getElementsByName("Email").item(0).value;
    var atpos=x.indexOf("@");
    var dotpos=x.lastIndexOf(".");
    //if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length)
    if(!validateEmail(x))
    {
    //alert(x + " does not appear to be a valid email!");
    //document.getElementsByName("Email").item(0).focus()
    //return false;
    pass=false;
    strlink = strlink + "<li><a href='#Email'>Email address is not properly formatted</a></li>";
    errorcounter = errorcounter + 1;
   }
    //last check
    var email1 = document.getElementById("Email").value;
    var email2 = document.getElementById("Email2").value;
    if (email1 !== email2)
    {
    //alert("Please double check your email address!");
    //document.getElementsByName("Email").item(0).focus()
    //return false;
        pass=false;
        strlink = strlink + "<li><a href='#Email'>Email address is not properly formatted</a></li>";
        errorcounter = errorcounter + 1;
    }
    if (errorcounter <1 )
    {
    var strerrCount = "<br>Please fix this issue to continue";
    }
    else
    {
    var strerrCount = "<br>Please fix " + errorcounter + " issues to continue";
    }
    if (pass)
    {
        if (!Checkproductcode()) {
            btn.disabled = false;
        }
        return false;
    }
    else
    {
        strlink = "<br><br><ul>" + strlink + "</ul>"
        showError(strerrCount + strlink);
        var goTo = document.getElementById("errorhd").offsetTop;
        window.scrollTo(0, goTo);
        //alert("head to the top");
        btn.disabled = false;
        return false; 
    }
}

function emailsMatch() 
{ 
    var email1 = document.getElementById("Email");
    var email2 = document.getElementById("Email2");

    email1.value = email1.value.trim();
    email2.value = email2.value.trim();
    document.getElementById("Email").value = email1.value;
    document.getElementById("Email2").value = email2.value;

    if(email1.value != email2.value) 
    { 
        alert('Emails do not match!');
        email1.focus();
        email1.select();
        return false; 
    }
    
    if(!validateEmail(email1.value))
    {
        alert(email1.value + " does not appear to be a valid email!");
        email1.focus();
        email1.select();
        return false;
    }
    
    return true;
} 

function checkinternational()
{
    var state = document.getElementsByName("State").item(0).value;

    if (state == "INTN")
    {
        document.getElementsByName("Country").item(0).value = "";
        document.getElementsByName("Country").item(0).focus();
    }
    else
        document.getElementsByName("Country").item(0).value = "US";

    if (state == "AP" || state == "AE")
        document.getElementsByName("city").item(0).value = "APO";
}

function checkinternationalCA()
{
    var province = document.getElementsByName("Province").item(0).value;

    if (province == "INTN")
    {
        document.getElementsByName("Country").item(0).value = "";
        document.getElementsByName("Country").item(0).focus();
    }
    else
    {
        document.getElementsByName("Country").item(0).value = "CA";
    }
}

function checkstate()
{
    var country = document.getElementsByName("Country").item(0).value;

    if (country == "CA")
    {
        document.getElementById("StateLabel").style.display = "none";
        document.getElementById("StateSelect").style.display = "none";
        document.getElementById("ProvinceLabel").style.display = "inline";
        document.getElementById("ProvinceSelect").style.display = "inline";

        document.getElementsByName("Province").item(0).value = "";
        document.getElementsByName("Province").item(0).focus();
    }
    else
    {
        document.getElementById("ProvinceLabel").style.display = "none";
        document.getElementById("ProvinceSelect").style.display = "none";
        document.getElementById("StateLabel").style.display = "inline";
        document.getElementById("StateSelect").style.display = "inline";

        if (country == "US")
        {
            document.getElementsByName("State").item(0).value = "";
            document.getElementsByName("State").item(0).focus();
        }
        else
            document.getElementsByName("State").item(0).value = "INTN";
    }
}

function cancel()
{
    location.replace("https://www.chargerback.com/reportLostItemCBEmbed.asp?CustomerID=" + document.getElementById("CustomerID").value + "&languageCode=" + document.getElementById("languageCode").value);
}

function ShowCellProviders(mode)
{
    var url;

    if (mode=="show")
    {
		if(window.XMLHttpRequest)
		{// code for IE7+, Firefox, Chrome, Opera, Safari
			xmlhttp=new XMLHttpRequest();
		}
		else
		{// code for IE6, IE5
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
		
		url = "CBAjax.asp?Action=ShowCellProviders";
		
		//alert(url);
		xmlhttp.open("GET", url, false); 
		xmlhttp.send();
	
		if(xmlhttp.status==200)
		{
			response = xmlhttp.responseText;

			if(response.toString().length > 2)
			{				
				document.getElementById("CellProviders").innerHTML= response;
			}
			else
			{
				return false;
			}
		}
		else
		{
    		//alert("");
		}
    }
    else 
    {
        document.getElementById("CellProviders").innerHTML= "";
    }    
}
</script>
<script type="text/javascript">
//<![CDATA[

/*
        A "Reservation Date" example using two datePickers
        --------------------------------------------------

        * Functionality

        1. When the page loads:
                - We clear the value of the two inputs (to clear any values cached by the browser)
                - We set an "onchange" event handler on the startDate input to call the setReservationDates function
        2. When a start date is selected
                - We set the low range of the endDate datePicker to be the start date the user has just selected
                - If the endDate input already has a date stipulated and the date falls before the new start date then we clear the input's value

        * Caveats (aren't there always)

        - This demo has been written for dates that have NOT been split across three inputs

*/

function makeTwoChars(inp) 
{
    return String(inp).length < 2 ? "0" + inp : inp;
}

function initialiseInputs() 
{
    // Clear any old values from the inputs (that might be cached by the browser after a page reload)
    document.getElementById("sd").value = "";
    document.getElementById("ed").value = "";

    // Add the onchange event handler to the start date input
    datePickerController.addEvent(document.getElementById("sd"), "change", setReservationDates);
}

var initAttempts = 0;

function setReservationDates(e) 
{
    // Internet Explorer will not have created the datePickers yet so we poll the datePickerController Object using a setTimeout
    // until they become available (a maximum of ten times in case something has gone horribly wrong)

    try 
    {
        var sd = datePickerController.getDatePicker("sd");
        var ed = datePickerController.getDatePicker("ed");
    } 
    catch (err) 
    {
        if(initAttempts++ < 10) setTimeout("setReservationDates()", 50);
        return;
    }

    // Check the value of the input is a date of the correct format
    var dt = datePickerController.dateFormat(this.value, sd.format.charAt(0) == "m");
	//var dt = datePickerController.dateFormat(this.value, true);
    // If the input's value cannot be parsed as a valid date then return
    if(dt == 0) return;

    // At this stage we have a valid YYYYMMDD date

    // Grab the value set within the endDate input and parse it using the dateFormat method
    // N.B: The second parameter to the dateFormat function, if TRUE, tells the function to favour the m-d-y date format
    var edv = datePickerController.dateFormat(document.getElementById("ed").value, ed.format.charAt(0) == "m");

    // Set the low range of the second datePicker to be the date parsed from the first
    ed.setRangeLow( dt );

    // If theres a value already present within the end date input and it's smaller than the start date
    // then clear the end date value
    if(edv < dt) 
    {
        document.getElementById("ed").value = "";
    }
}

function removeInputEvents() 
{
    // Remove the onchange event handler set within the function initialiseInputs
    datePickerController.removeEvent(document.getElementById("sd"), "change", setReservationDates);
}

//datePickerController.addEvent(window, 'load', initialiseInputs);
//datePickerController.addEvent(window, 'unload', removeInputEvents);

//]]>
</script>
<script type="text/javascript">
function showCellCustomMsg() {
    document.getElementById("CellCustomMsg").style.display = "block";
}
function hideCellCustomMsg() {
    document.getElementById("CellCustomMsg").style.display = "none";
}
</script>
<style type="text/css">
i:hover {color:red;}
img{margin-bottom:0px}
input[type="button"] {-moz-appearance: none;-webkit-appearance: none;-ms-appearance: none;appearance: none;-moz-transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;-webkit-transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;-ms-transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;display: inline-block;}
input[type="button"]:hover {opacity: 0.85;}
body {font-family: "Arial Regular", "Arial";}
.logocb {width:100%;max-width:450px;max-height:80px;}
.errorhighlight	{outline-color:#C30019;outline-style:solid;outline-width:1px;}
.errortitle {color: #C30019;}
.c-fborder {BORDER-BOTTOM: medium none;BORDER-TOP: medium none;BORDER-LEFT: medium none;BORDER-RIGHT: medium none;}
.c-bg {}
.c-stc {COLOR: black;}
.c-shc {Color: black;}
.c-fs { FONT-FAMILY: arial, helvetica, sans-serif;}
.c-fc {COLOR: black; FONT-FAMILY: arial, helvetica, sans-serif;}
.c-ifc {color:black;}
.c-con2 {max-width:980px;margin:auto;}
select {height:2.35em;width:280px;}
input.c-inp {height:2.35em;width:280px;}
</style>

</head>

<body class="c-bg">
<div class="c-con">
<div style="Background-Color:black;" id="topbannerbg" class="w3-container w3-margin-top w3-margin-bottom">
<a href='http://www.vailresorts.com/Corp/info/vri-hospitality.aspx'><center><img class='logocb' border='0' src='images/customer/5340.jpg'></center></a>
    <div class="w3-hide-medium w3-hide-large" style="position:absolute;margin-top:-20px;"></div>
    <div class="c-fc c-fs notranslate" style="margin-top:3px;">
        
    </div>
</div>
<div id="google_translate_element" style="visibility:hidden;"></div>
<script type="text/javascript">
    function googleTranslateElementInit() {
    new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'de,en,es,fr,ja,ko,pt,ru,zh-CN,zh-TW', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
    }
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</div>

<div onclick="ClosePop();" class="c-con2">

<div id="formbackground" style="" >
<form action="ReportLostItemCBEmbedUpdate.asp" method="Post" id=form1 name="PostItem">
<input type="Hidden" name="SU" value="" />
<input type="Hidden" id="Status" name="ItemStatus" value="0" />
<input type="Hidden" id="uiCBSession" name="uiCBSession" value="38514168764532" />
<input type="Hidden" id="Hidden1" name="uiCBSession" value="38514168764532" />
<input type="Hidden" id="languageCode" name="languageCode" value="en-US" />
<input type="Hidden" id="ultracustom" name="ultracustom" value="custom" />
<input type="Hidden" id="MatchID" name="MatchID" value="-422499055" />
<input type="Hidden" name="ProductCode" id="ProductCode" value="" />
<input type="hidden" id="showstyle" value="COLOR: black; FONT-FAMILY: arial, helvetica, sans-serif; FONT-FAMILY: arial, helvetica, sans-serif;" />
<input type="hidden" id="currentItemSQLID" />
<input type="hidden" id="superCustomerID" value="5340" />
<input type="hidden" id="selectedOvergroup" value="" />





<div class="w3-container TEmbed">
    <div id="errorhd"></div>
    <div class="w3-row w3-padding-top" style="min-height:30px;">
        <span id="ct150" class="c-shc c-fs ship notranslate" style="font-size:large;">
            Where did you lose your item?<span style=color:#CC0000;>*</span>
            
        </span>
    </div>


<div class="w3-row w3-padding-0 " style="min-height:30px;">
    <div class="select-wrapper">
        <select name="CustomerID" id="CustomerID" class="ship c-fc c-fs notranslate">
        <option value="" class="ship c-fc c-fs"></option>

<option value="7616" class="ship c-fc c-fs">Avon,CO - Beaver Creek Resort</option>

<option value="16592" class="ship c-fc c-fs">Avon,CO - Elkhorn Lodge</option>

<option value="5337" class="ship c-fc c-fs">Beaver Creek,CO - The Pines Lodge</option>

<option value="5430" class="ship c-fc c-fs">Breckenridge,CO - Breckenridge Ski Resort</option>

<option value="5409" class="ship c-fc c-fs">Breckenridge,CO - Doubletree by Hilton Breckenridge|HOTEL ONLY</option>

<option value="7507" class="ship c-fc c-fs">Breckenridge,CO - One Ski Hill Place|Crystal Peak Lodge</option>

<option value="5339" class="ship c-fc c-fs">Breckenridge,CO - Village at Breckenridge</option>

<option value="20779" class="ship c-fc c-fs">Brighton,UT - Brighton Ski Resort</option>

<option value="8339" class="ship c-fc c-fs">Carroll Valley,PA - Liberty Mountain Hotel</option>

<option value="3320" class="ship c-fc c-fs">Carroll Valley,PA - Liberty Mountain Resort</option>

<option value="17838" class="ship c-fc c-fs">Gorham,NH - Wildcat Mountain Ski Area</option>

<option value="17312" class="ship c-fc c-fs">Hastings ,MN - Afton Alps </option>

<option value="6809" class="ship c-fc c-fs">Keystone,CO - Hyatt Place Keystone</option>

<option value="14888" class="ship c-fc c-fs">Keystone,CO - Keystone Mountain Resort</option>

<option value="15632" class="ship c-fc c-fs">Keystone,CO - Keystone Resort Condos</option>

<option value="5833" class="ship c-fc c-fs">Keystone,CO - Lodge and Spa @ Keystone Resort</option>

<option value="16652" class="ship c-fc c-fs">Kirkwood,CA - Kirkwood Mountain Resort</option>

<option value="16583" class="ship c-fc c-fs">Ludlow ,VT - Okemo Mountain Resort</option>

<option value="4328" class="ship c-fc c-fs">Moran,WY - Colter Bay Village</option>

<option value="7775" class="ship c-fc c-fs">Park City,UT - Grand Summit Hotel</option>

<option value="17763" class="ship c-fc c-fs">Park City,UT - Lift Condominiums</option>

<option value="7777" class="ship c-fc c-fs">Park City,UT - Silverado Lodge</option>

<option value="7776" class="ship c-fc c-fs">Park City,UT - Sundial Lodge</option>

<option value="15970" class="ship c-fc c-fs">South Lake Tahoe,CA - Heavenly Security</option>

<option value="17117" class="ship c-fc c-fs">South Lake Tahoe,CA - Vail Resorts/ Lakeland Village</option>

<option value="16041" class="ship c-fc c-fs">Stowe,VT - Stowe Mountain Resort</option>

<option value="3434" class="ship c-fc c-fs">Vail,CO - Arrabelle at Vail Square   Vail Resorts</option>

<option value="5243" class="ship c-fc c-fs">Vail,CO - Epic Mountain Express / CME</option>

<option value="5331" class="ship c-fc c-fs">Vail,CO - The Lodge at Vail</option>

<option value="5726" class="ship c-fc c-fs">Vail,CO - Vail Mountain Ski Resort</option>

<option value="16219" class="ship c-fc c-fs">West Dover,VT - Grand Summit Hotel and Resort at Mount Snow</option>

<option value="12491" class="ship c-fc c-fs">Whistler,BC - Whistler Blackcomb</option>

        </select>
     </div>
</div>

    <div class="w3-row w3-padding-top" style="min-height:30px;">
        <span id="ct15" class="c-shc c-fs ship notranslate" style="font-size:large;">
            Please describe your lost item(s).
        </span>
    </div>

        <div class="w3-row w3-padding-0" style="min-height:30px;">
            <div id="ItemPicker" class="w3-half">
                <span id="ct114" class="c-fc c-fs notranslate">
                <span style='color:#CC0000;'>*</span>Please choose the type of item(s) you lost.</span><br />
                <div id="Category"><div class="select-wrapper"><select id='overgroup' onchange='loadproductcode();' name='overgroup' class='notranslate'><option value='-1' class='c-ifc'></option><option value='34' class='c-ifc'>Baby or Child Item</option><option value='16' class='c-ifc'>Blankets, Pillows and Towels</option><option value='7' class='c-ifc'>Bottles, Cups and Mugs</option><option value='12' class='c-ifc'>Cases and Containers</option><option value='21' class='c-ifc'>Cell Phone</option><option value='1' class='c-ifc'>Clothing</option><option value='31' class='c-ifc'>Disney Parks Products</option><option value='25' class='c-ifc'>Duty Free</option><option value='17' class='c-ifc'>Electronics</option><option value='19' class='c-ifc'>Entertainment</option><option value='13' class='c-ifc'>Eyewear</option><option value='14' class='c-ifc'>Food and Beverage</option><option value='2' class='c-ifc'>Footwear</option><option value='3' class='c-ifc'>Headwear</option><option value='24' class='c-ifc'>Housewares</option><option value='5' class='c-ifc'>IDs, Drivers Licenses, Credit Cards and Passports</option><option value='9' class='c-ifc'>Jewelry</option><option value='15' class='c-ifc'>Keys, Wallets and Other Personal Accessories</option><option value='32' class='c-ifc'>Legoland Retail and Membership</option><option value='11' class='c-ifc'>Luggage, Travel Equipment</option><option value='26' class='c-ifc'>Membership Cards and Tickets</option><option value='18' class='c-ifc'>Money and Gift Cards</option><option value='33' class='c-ifc'>MTA</option><option value='22' class='c-ifc'>Musical Instruments</option><option value='29' class='c-ifc'>Non-Returnables</option><option value='4' class='c-ifc'>Photos, Documents, Art, Books, etc.</option><option value='6' class='c-ifc'>Prescription Drugs and Medical Equipment</option><option value='35' class='c-ifc'>REDTAG</option><option value='27' class='c-ifc'>Religious Articles</option><option value='28' class='c-ifc'>Souvenirs</option><option value='8' class='c-ifc'>Sports Equipment</option><option value='10' class='c-ifc'>Toiletries and Hair Products</option><option value='20' class='c-ifc'>Toys and Pets</option><option value='23' class='c-ifc'>Unique Item Not Listed</option><option value='30' class='c-ifc'>Utility 1 - Safe Recovery</option></select></div><br /><br /><div id="pc"></div></div>
                <div style="display:none;" class="error" id="ct114Error"><font color="#C30019">Lost item is required.</font></div>            
            </div>
            <div class="w3-half">
                <span id="captionforselected" class="c-fc c-fs"></span>
                <div id="pcnav" class="c-fc c-fs" style="font-size:small;"></div>
                <div id="itemselected" class="c-fc c-fs"></div>
            </div>
        </div>
        <div style="display:none;" class="w3-row w3-padding-0 " style="min-height:30px;">
            <span id="ct16" class="c-fc c-fs notranslate">
                Please provide a detailed description, including brand, color, size and any distinguishing features, of your lost item. For example if you've lost an electronic item, please provide the device's serial number or screen saver.<span style='color:#CC0000;'>*</span>
            </span>
        </div>
        <div style="display:none;" class="w3-row w3-margin-top w3-padding-0 " style="min-height:30px;">
            <span id="ct19" class="c-fc c-fs ship notranslate">
                Item description:<span style='color:#CC0000;'>*</span>
            </span>
        </div>
        <div style="display:none;" class="w3-row w3-padding-0 " style="min-height:30px;">
            <textarea id="Items" name="Items" rows="2" cols="60" class="c-ifc w3-col s12 m10 l10" style="text-align:left;"></textarea>
        </div>


<div class="w3-row w3-padding-0 c-marg" style="min-height:30px;">
    <span id="ct2" name="ct2" class="ship c-fc c-fs notranslate">
    Date of Loss:<span style='color:#CC0000;'>*</span> (MM/DD/YYYY)
    </span>
</div>
<div class="w3-row w3-padding-0 " style="min-height:30px;">
    <input type="text" class="c-inp c-ifc w8em format-m-d-y highlight-days-67 range-low-20081202" id="LostDate" name="LostDate" value="" maxlength="10" />
</div>
<div style="display:none;clear:both;" class="error" id="ct2Error"><font color="#C30019">Date is required.</font><br /></div>

<div class="w3-row w3-padding-0 c-marg" style="min-height:30px;">
    <span id= "ct5" class="ship c-fc c-fs notranslate">
    Enter details about where your item was last seen and other unique characteristics to help us locate your lost item.<span style='color:#CC0000;'>*</span></span>
</div>
<div class="w3-row w3-padding-0" style="min-height:30px;">
    <span id="ct6" class="c-fc c-fs notranslate" style="FONT-size: small;">
    (For example: room number, exact location, screensaver, colors, etc.) </span><br />
    <textarea rows="2" class="c-ifc w3-col s12 m10 l10" style="text-align:left;" id="Room" name="Room"></textarea>
</div>
<div style="display:none;" class="error" id="ct5Error"><font color="#C30019">Description of where you lost your item is required.</font><br /></div>
<div id="c-line1"></div>
<div class="w3-row w3-padding-top" style="min-height:30px;">
    <span class="ship c-shc c-fs notranslate" style="font-size:large;" id="ct18">
    Contact and shipping information</span>
</div>
<div class="w3-row w3-padding-0 " style="min-height:30px;">
    <div class="w3-half">
        <span id="ct7" class="ship c-fc c-fs notranslate">
        First name:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" type="text" style="text-align:left;" id="FirstName" name="FirstName" />
        <div style="display:none;" class="error" id="ct7Error"><font color="#C30019">First name is required.</font><br /></div>
    </div>
    <div class="w3-half">
        <span id="ct8" class="ship c-fc c-fs notranslate">
        Last name:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" type="text" style="text-align:left;" id="LastName" name="LastName" />
        <div style="display:none;" class="error" id="ct8Error"><font color="#C30019">Last name is required.</font><br /></div>
    </div>
</div>

<div class="w3-row w3-margin-top w3-padding-0 " style="min-height:30px;">
    <div class="w3-half">
        <span id="ct9" class="ship c-fc c-fs">
        Phone number / mobile number:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" style="text-align:left;" id="phonenumber" name="PhoneNumber" type="text" />
        <div style="display:none;" class="error" id="ct9Error"><font color="#C30019">Phone number is required.</font><br /></div>
    </div> 
    <div class="w3-half">
        <span class="c-fc c-fs">Text OK?</span><span id="Span4" class="ship" style="visibility:hidden;">
        Phone number / mobile number:<span style='color:#CC0000;'>*</span></span><br />
        <input onclick="ShowCellProviders('show');showCellCustomMsg();" type="radio" name="txtmsgOK" value="Yes" id="_1" class="c-rad" />
        <label for="_1" class="ship c-fc c-fs">Yes</label>
        <input onclick="ShowCellProviders('hide');hideCellCustomMsg();" type="radio" name="txtmsgOK" value="No" id="_2" class="c-rad" />
        <label for="_2" class="ship c-fc c-fs">No</label>
        <!-- <span id="cell" class="ship c-fc c-fs"></span> -->
    </div>    
</div>
<div class="w3-row w3-margin-top w3-padding-0">
    <div class="w3-container w3-padding-0">
        <div id="CellCustomMsg" style="display:none;"><span class="c-fc c-fs">By clicking “Yes” to “Text OK?”, you consent to  sending one or more text messages using an automatic telephone dialing system to that mobile number that you provided regarding your lost item(s).  Message and data rates may apply.</span></div>
        <div id="CellProviders"></div>
        <div style='display:none;' class='error' id='cellproviderError'><font color='#C30019;'>Cell phone service provider is required.</font></div>
    </div>
</div>

<div id="c-line2"></div>
<div class="w3-row w3-margin-top w3-padding-0 " style="min-height:30px;">
    <div class="w3-half">
        <span id="ct10" class="ship c-fc c-fs notranslate">
        Email address:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" style="text-align:left;" id="Email" name="Email" type="text" />
        <div style="display:none;" class="error" id="ct10Error"><font color="#C30019">An email address is required.</font><br /></div>
    </div>
    <div class="w3-half">
        <span id="ct148" class="ship c-fc c-fs notranslate">
        Confirm email:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" style="text-align:left;" id="Email2" name="Email2" type="text" onblur="emailsMatch();" />
        <div style="display:none;" class="error" id="ct148Error"><font color="#C30019">Confirming your email address is required.</font><br /></div>
    </div>
</div>
<div id="c-line3"></div>
<div class="w3-row w3-margin-top w3-padding-0 " style="min-height:30px;">
    <div class="w3-half">
        <span id="ct11" class="ship c-fc c-fs notranslate">
        Street address:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" type="text" style="text-align:left;" id="Street" name="Street" />
        <div style="display:none;" class="error" id="ct11Error"><font color="#C30019">Street address is required.</font><br /></div>
    </div>
    <div class="w3-half">
        <span id="ct11-2" class="ship c-fc c-fs notranslate">
        Street address 2:</span><br />
        <input class="c-inp c-ifc" type="text" style="text-align:left;" id="Address2" name="Street2" />
    </div>
</div>
<div class="w3-row w3-margin-top w3-padding-0 " style="min-height:30px;">
    <div class="w3-half">
        <span id="ct12" class="ship c-fc c-fs notranslate">
        City:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" type="text" style="text-align:left;" id="City" name="City"/>
        <div style="display:none;" class="error" id="ct12Error"><font color="#C30019">City is required.</font><br /></div>
    </div>
    <div class="w3-half">
        <span id="StateLabel" style="display:inline;" class="ship c-fc c-fs notranslate">
        State:<span style='color:#CC0000;'>*</span></span>
        <span id="ProvinceLabel" style="display:none;" class="ship c-fc c-fs notranslate">
        Province:<span style='color:#CC0000;'>*</span></span><br />
        <div class="c-fc c-fs">
            <div id="StateSelect" class="select-wrapper" style="display:inline;">
                <select name='State' id='State' class='c-inp c-ifc' onchange="checkinternational();"><option class='c-ifc' value='' selected>Select State</option><option class='c-ifc' value='AL'>Alabama</option><option class='c-ifc' value='AK'>Alaska</option><option class='c-ifc' value='AA'>APO/FPO/DPO AA</option><option class='c-ifc' value='AE'>APO/FPO/DPO AE</option><option class='c-ifc' value='AP'>APO/FPO/DPO AP</option><option class='c-ifc' value='AZ'>Arizona</option><option class='c-ifc' value='AR'>Arkansas</option><option class='c-ifc' value='CA'>California</option><option class='c-ifc' value='CO'>Colorado</option><option class='c-ifc' value='CT'>Connecticut</option><option class='c-ifc' value='DE'>Delaware</option><option class='c-ifc' value='DC'>District Of Columbia</option><option class='c-ifc' value='FL'>Florida</option><option class='c-ifc' value='GA'>Georgia</option><option class='c-ifc' value='GU'>Guam</option><option class='c-ifc' value='HI'>Hawaii</option><option class='c-ifc' value='ID'>Idaho</option><option class='c-ifc' value='IL'>Illinois</option><option class='c-ifc' value='IN'>Indiana</option><option class='c-ifc' value='IA'>Iowa</option><option class='c-ifc' value='KS'>Kansas</option><option class='c-ifc' value='KY'>Kentucky</option><option class='c-ifc' value='PW'>Koror</option><option class='c-ifc' value='MH'>Kwajalein</option><option class='c-ifc' value='LA'>Louisiana</option><option class='c-ifc' value='ME'>Maine</option><option class='c-ifc' value='MD'>Maryland</option><option class='c-ifc' value='MA'>Massachusetts</option><option class='c-ifc' value='MI'>Michigan</option><option class='c-ifc' value='MN'>Minnesota</option><option class='c-ifc' value='MS'>Mississippi</option><option class='c-ifc' value='MO'>Missouri</option><option class='c-ifc' value='MT'>Montana</option><option class='c-ifc' value='NE'>Nebraska</option><option class='c-ifc' value='NV'>Nevada</option><option class='c-ifc' value='NH'>New Hampshire</option><option class='c-ifc' value='NJ'>New Jersey</option><option class='c-ifc' value='NM'>New Mexico</option><option class='c-ifc' value='NY'>New York</option><option class='c-ifc' value='NC'>North Carolina</option><option class='c-ifc' value='ND'>North Dakota</option><option class='c-ifc' value='OH'>Ohio</option><option class='c-ifc' value='OK'>Oklahoma</option><option class='c-ifc' value='OR'>Oregon</option><option class='c-ifc' value='PA'>Pennsylvania</option><option class='c-ifc' value='PR'>Puerto Rico</option><option class='c-ifc' value='RI'>Rhode Island</option><option class='c-ifc' value='MP'>Saipan</option><option class='c-ifc' value='SC'>South Carolina</option><option class='c-ifc' value='SD'>South Dakota</option><option class='c-ifc' value='TN'>Tennessee</option><option class='c-ifc' value='TX'>Texas</option><option class='c-ifc' value='UT'>Utah</option><option class='c-ifc' value='VT'>Vermont</option><option class='c-ifc' value='VI'>Virgin Islands</option><option class='c-ifc' value='VA'>Virginia</option><option class='c-ifc' value='WA'>Washington</option><option class='c-ifc' value='WV'>West Virginia</option><option class='c-ifc' value='WI'>Wisconsin</option><option class='c-ifc' value='WY'>Wyoming</option><option class='c-ifc' value='FM'>Yap</option><option class='c-ifc' value='INTN'>INTERNATIONAL</option></select>
            </div>
            <div id="ProvinceSelect" class="select-wrapper" style="display:none;">
                <select name='Province' id='Province' class='c-inp c-ifc' onchange="checkinternationalCA();"><option value='' selected>Select Province</option><option value='AB'>Alberta</option><option value='BC'>British Columbia</option><option value='MB'>Manitoba</option><option value='NB'>New Brunswick</option><option value='NL'>Newfoundland and Labrador</option><option value='NT'>Northwest Territories</option><option value='NS'>Nova Scotia</option><option value='NU'>Nunavut</option><option value='ON'>Ontario</option><option value='PE'>Prince Edward Island</option><option value='QC'>Quebec</option><option value='SK'>Saskatchewan</option><option value='YT'>Yukon</option><option class='c-ifc' value='INTN'>INTERNATIONAL</option></select>
            </div>
        </div>
        <div style="display:none;" class="error" id="ct13Error"><font color="#C30019">State is required.</font><br /></div>
    </div>
</div>
<div class="w3-row w3-margin-top w3-padding-0 " style="min-height:30px;">
    <div class="w3-half">
        <span id="ct14" class="ship c-fc c-fs notranslate">
        Zip code:<span style='color:#CC0000;'>*</span></span><br />
        <input class="c-inp c-ifc" style="text-align:left;" id="PostalCode" name="PostalCode" type="text" />
        <div style="display:none;" class="error" id="ct14Error"><font color="#C30019">Postal code is required.</font><br /></div>
    </div>
    <div class="w3-half">
        <span id="ct17" class="ship c-fc c-fs notranslate">
        Country:<span style='color:#CC0000;'>*</span></span><br />
        <div class="c-fc c-fs">
            <div class="select-wrapper">
                <select name='Country' id='Country' class='c-inp c-ifc' onchange="checkstate();"><option class='c-ifc' value=''>Select Country</option><option class='c-ifc' value='US' selected>United States </option><option class='c-ifc' value='AF'>Afghanistan </option><option class='c-ifc' value='AX'>Aland Islands </option><option class='c-ifc' value='AL'>Albania </option><option class='c-ifc' value='AG'>Algeria </option><option class='c-ifc' value='AQ'>American Samoa </option><option class='c-ifc' value='AN'>Andorra </option><option class='c-ifc' value='AO'>Angola </option><option class='c-ifc' value='AV'>Anguilla </option><option class='c-ifc' value='AY'>Antarctica </option><option class='c-ifc' value='AC'>Antigua and Barbuda </option><option class='c-ifc' value='AR'>Argentina </option><option class='c-ifc' value='AM'>Armenia </option><option class='c-ifc' value='AA'>Aruba </option><option class='c-ifc' value='AS'>Australia </option><option class='c-ifc' value='AU'>Austria </option><option class='c-ifc' value='AJ'>Azerbaijan </option><option class='c-ifc' value='BF'>Bahamas </option><option class='c-ifc' value='BA'>Bahrain </option><option class='c-ifc' value='BG'>Bangladesh </option><option class='c-ifc' value='BB'>Barbados </option><option class='c-ifc' value='BY'>Belarus </option><option class='c-ifc' value='BE'>Belgium </option><option class='c-ifc' value='BH'>Belize </option><option class='c-ifc' value='BN'>Benin </option><option class='c-ifc' value='BD'>Bermuda </option><option class='c-ifc' value='BT'>Bhutan </option><option class='c-ifc' value='BO'>Bolivia </option><option class='c-ifc' value='BK'>Bosnia-Herzegovina </option><option class='c-ifc' value='BC'>Botswana </option><option class='c-ifc' value='BV'>Bouvet Island </option><option class='c-ifc' value='IO'>British Indian Ocean</option><option class='c-ifc' value='BR'>Brazil </option><option class='c-ifc' value='VI'>Virgin Islands, Brit</option><option class='c-ifc' value='BX'>Brunei Darussalam </option><option class='c-ifc' value='BU'>Bulgaria </option><option class='c-ifc' value='UV'>Burkina </option><option class='c-ifc' value='BM'>Myanmar </option><option class='c-ifc' value='BI'>Burundi </option><option class='c-ifc' value='CB'>Cambodia </option><option class='c-ifc' value='CM'>Cameroon </option><option class='c-ifc' value='CA'>Canada </option><option class='c-ifc' value='CV'>Cabo Verde </option><option class='c-ifc' value='CJ'>Cayman Islands </option><option class='c-ifc' value='CT'>Central African Repu</option><option class='c-ifc' value='CD'>Chad </option><option class='c-ifc' value='CI'>Chile </option><option class='c-ifc' value='CH'>China </option><option class='c-ifc' value='KT'>Christmas Island </option><option class='c-ifc' value='CC'>Cocos (Keeling) Isla</option><option class='c-ifc' value='CO'>Colombia </option><option class='c-ifc' value='CN'>Comoros </option><option class='c-ifc' value='CF'>Congo </option><option class='c-ifc' value='CG'>Congo, D. R. </option><option class='c-ifc' value='CK'>Cook Islands </option><option class='c-ifc' value='CS'>Costa Rica </option><option class='c-ifc' value='IV'>Côte D'ivoire </option><option class='c-ifc' value='HR'>Croatia </option><option class='c-ifc' value='CU'>Cuba </option><option class='c-ifc' value='CY'>Cyprus </option><option class='c-ifc' value='EZ'>Czech Republic </option><option class='c-ifc' value='DA'>Denmark </option><option class='c-ifc' value='DJ'>Djibouti </option><option class='c-ifc' value='DO'>Dominica </option><option class='c-ifc' value='DR'>Dominican Republic </option><option class='c-ifc' value='EC'>Ecuador </option><option class='c-ifc' value='EG'>Egypt </option><option class='c-ifc' value='ES'>El Salvador </option><option class='c-ifc' value='EK'>Equatorial Guinea </option><option class='c-ifc' value='ER'>Eritrea </option><option class='c-ifc' value='EN'>Estonia </option><option class='c-ifc' value='ET'>Ethiopia </option><option class='c-ifc' value='FK'>Falkland Is </option><option class='c-ifc' value='FO'>Faroe Islands </option><option class='c-ifc' value='FM'>Micronesia </option><option class='c-ifc' value='FJ'>Fiji </option><option class='c-ifc' value='FI'>Finland </option><option class='c-ifc' value='FS'>Fr So & Antarctic Ln</option><option class='c-ifc' value='FR'>France </option><option class='c-ifc' value='FG'>French Guiana </option><option class='c-ifc' value='FP'>French Polynesia </option><option class='c-ifc' value='GB'>Gabon </option><option class='c-ifc' value='GA'>Gambia, The </option><option class='c-ifc' value='GG'>Georgia </option><option class='c-ifc' value='GM'>Germany </option><option class='c-ifc' value='GH'>Ghana </option><option class='c-ifc' value='GI'>Gibraltar </option><option class='c-ifc' value='GR'>Greece </option><option class='c-ifc' value='GL'>Greenland </option><option class='c-ifc' value='GJ'>Grenada </option><option class='c-ifc' value='GP'>Guadeloupe </option><option class='c-ifc' value='GQ'>Guam </option><option class='c-ifc' value='GT'>Guatemala </option><option class='c-ifc' value='GK'>Guernsey </option><option class='c-ifc' value='GV'>Guinea </option><option class='c-ifc' value='PU'>Guinea-bissau </option><option class='c-ifc' value='GY'>Guyana </option><option class='c-ifc' value='HA'>Haiti </option><option class='c-ifc' value='HM'>Heard Is & Mcdonald </option><option class='c-ifc' value='HO'>Honduras </option><option class='c-ifc' value='HK'>Hong Kong SAR, China</option><option class='c-ifc' value='HU'>Hungary </option><option class='c-ifc' value='IC'>Iceland </option><option class='c-ifc' value='IN'>India </option><option class='c-ifc' value='ID'>Indonesia </option><option class='c-ifc' value='IR'>Iran </option><option class='c-ifc' value='IZ'>Iraq </option><option class='c-ifc' value='EI'>Ireland </option><option class='c-ifc' value='IS'>Israel </option><option class='c-ifc' value='IT'>Italy </option><option class='c-ifc' value='JM'>Jamaica </option><option class='c-ifc' value='JA'>Japan </option><option class='c-ifc' value='JE'>Jersey </option><option class='c-ifc' value='JO'>Jordan </option><option class='c-ifc' value='KZ'>Kazakhstan </option><option class='c-ifc' value='KE'>Kenya </option><option class='c-ifc' value='KR'>Kiribati </option><option class='c-ifc' value='KS'>Korea, Republic Of </option><option class='c-ifc' value='KN'>North Korea </option><option class='c-ifc' value='KU'>Kuwait </option><option class='c-ifc' value='KG'>Kyrgyzstan </option><option class='c-ifc' value='LA'>Laos </option><option class='c-ifc' value='LG'>Latvia </option><option class='c-ifc' value='LE'>Lebanon </option><option class='c-ifc' value='LT'>Lesotho </option><option class='c-ifc' value='LI'>Liberia </option><option class='c-ifc' value='LY'>Libya </option><option class='c-ifc' value='LS'>Liechtenstein </option><option class='c-ifc' value='LH'>Lithuania </option><option class='c-ifc' value='LU'>Luxembourg </option><option class='c-ifc' value='MC'>Macau SAR, China </option><option class='c-ifc' value='MK'>Macedonia </option><option class='c-ifc' value='MA'>Madagascar </option><option class='c-ifc' value='MI'>Malawi </option><option class='c-ifc' value='MY'>Malaysia </option><option class='c-ifc' value='MV'>Maldives </option><option class='c-ifc' value='ML'>Mali </option><option class='c-ifc' value='MT'>Malta </option><option class='c-ifc' value='IM'>Man, Isle Of </option><option class='c-ifc' value='RM'>Marshall Islands </option><option class='c-ifc' value='MB'>Martinique </option><option class='c-ifc' value='MR'>Mauritania </option><option class='c-ifc' value='MP'>Mauritius </option><option class='c-ifc' value='YT'>Mayotte </option><option class='c-ifc' value='MX'>Mexico </option><option class='c-ifc' value='MD'>Moldova, Republic Of</option><option class='c-ifc' value='MN'>Monaco </option><option class='c-ifc' value='MG'>Mongolia </option><option class='c-ifc' value='MJ'>Montenegro </option><option class='c-ifc' value='MS'>Montserrat </option><option class='c-ifc' value='MO'>Morocco </option><option class='c-ifc' value='MZ'>Mozambique </option><option class='c-ifc' value='WA'>Namibia </option><option class='c-ifc' value='NR'>Nauru </option><option class='c-ifc' value='NP'>Nepal </option><option class='c-ifc' value='NL'>Netherlands </option><option class='c-ifc' value='NT'>Netherlands Antilles</option><option class='c-ifc' value='NC'>New Caledonia </option><option class='c-ifc' value='NZ'>New Zealand </option><option class='c-ifc' value='NU'>Nicaragua </option><option class='c-ifc' value='NG'>Niger </option><option class='c-ifc' value='NI'>Nigeria </option><option class='c-ifc' value='NE'>Niue </option><option class='c-ifc' value='NF'>Norfolk Island </option><option class='c-ifc' value='CQ'>Northern Mariana Is </option><option class='c-ifc' value='NO'>Norway </option><option class='c-ifc' value='MU'>Oman </option><option class='c-ifc' value='PK'>Pakistan </option><option class='c-ifc' value='PS'>Palestinian Territor</option><option class='c-ifc' value='PM'>Panama </option><option class='c-ifc' value='PP'>Papua New Guinea </option><option class='c-ifc' value='PA'>Paraguay </option><option class='c-ifc' value='PS'>Palau </option><option class='c-ifc' value='PE'>Peru </option><option class='c-ifc' value='RP'>Philippines </option><option class='c-ifc' value='PC'>Pitcairn Islands </option><option class='c-ifc' value='PL'>Poland </option><option class='c-ifc' value='PO'>Portugal </option><option class='c-ifc' value='RQ'>Puerto Rico </option><option class='c-ifc' value='QA'>Qatar </option><option class='c-ifc' value='RE'>Reunion </option><option class='c-ifc' value='RO'>Romania </option><option class='c-ifc' value='RS'>Russian Federation </option><option class='c-ifc' value='RW'>Rwanda </option><option class='c-ifc' value='GS'>S. Georgia / S. Sand</option><option class='c-ifc' value='SM'>San Marino </option><option class='c-ifc' value='TP'>Sao Tome and Princip</option><option class='c-ifc' value='SA'>Saudi Arabia </option><option class='c-ifc' value='SG'>Senegal </option><option class='c-ifc' value='RI'>Serbia </option><option class='c-ifc' value='SE'>Seychelles </option><option class='c-ifc' value='SL'>Sierra Leone </option><option class='c-ifc' value='SN'>Singapore </option><option class='c-ifc' value='LO'>Slovakia </option><option class='c-ifc' value='SI'>Slovenia </option><option class='c-ifc' value='BP'>Solomon Islands </option><option class='c-ifc' value='SO'>Somalia </option><option class='c-ifc' value='SF'>South Africa </option><option class='c-ifc' value='OD'>South Sudan </option><option class='c-ifc' value='SP'>Spain </option><option class='c-ifc' value='CE'>Sri Lanka </option><option class='c-ifc' value='ST'>St Lucia </option><option class='c-ifc' value='SH'>St. Helena </option><option class='c-ifc' value='SC'>St. Kitts and Nevis </option><option class='c-ifc' value='SB'>St. Pierre and Mique</option><option class='c-ifc' value='VC'>St. Vincent/grenadin</option><option class='c-ifc' value='BL'>St. Barthelemy </option><option class='c-ifc' value='MF'>St. Martin </option><option class='c-ifc' value='SU'>Sudan </option><option class='c-ifc' value='NS'>Suriname </option><option class='c-ifc' value='WZ'>Swaziland </option><option class='c-ifc' value='SW'>Sweden </option><option class='c-ifc' value='SZ'>Switzerland </option><option class='c-ifc' value='SY'>Syrian Arab Republic</option><option class='c-ifc' value='TW'>Taiwan, China </option><option class='c-ifc' value='TI'>Tajikistan </option><option class='c-ifc' value='TZ'>Tanzania </option><option class='c-ifc' value='TH'>Thailand </option><option class='c-ifc' value='TT'>Timor-leste </option><option class='c-ifc' value='TO'>Togo </option><option class='c-ifc' value='TL'>Tokelau </option><option class='c-ifc' value='TN'>Tonga </option><option class='c-ifc' value='TD'>Trinidad and Tobago </option><option class='c-ifc' value='TS'>Tunisia </option><option class='c-ifc' value='TU'>Turkey </option><option class='c-ifc' value='TX'>Turkmenistan </option><option class='c-ifc' value='TK'>Turks and Caicos Isl</option><option class='c-ifc' value='TV'>Tuvalu </option><option class='c-ifc' value='UM'>U.S. Minor Outlying </option><option class='c-ifc' value='UG'>Uganda </option><option class='c-ifc' value='UP'>Ukraine </option><option class='c-ifc' value='AE'>United Arab Emirates</option><option class='c-ifc' value='UK'>United Kingdom </option><option class='c-ifc' value='UY'>Uruguay </option><option class='c-ifc' value='UZ'>Uzbekistan </option><option class='c-ifc' value='NH'>Vanuatu </option><option class='c-ifc' value='VT'>Holy See </option><option class='c-ifc' value='VE'>Venezuela </option><option class='c-ifc' value='VM'>Viet Nam </option><option class='c-ifc' value='VQ'>Virgin Islands, U.S.</option><option class='c-ifc' value='WF'>Wallis and Futuna </option><option class='c-ifc' value='WI'>Western Sahara </option><option class='c-ifc' value='WS'>Western Samoa </option><option class='c-ifc' value='YM'>Yemen </option><option class='c-ifc' value='ZA'>Zambia </option><option class='c-ifc' value='ZI'>Zimbabwe </option><option class='c-ifc' value='SX'>Sint Maarten</option><option class='c-ifc' value='CW'>Curacao</option></select>
            </div>
        </div>
        <div style="display:none;" class="error" id="ct17Error"><font color="#C30019">Country is required.</font><br /></div>
    </div>
</div>
<br />
<br />

    <div class="w3-row w3-padding-0 " style="min-height:30px;">
        <input class="greenbtn c-btn notranslate" type="button" value="Submit" href="javascript: void(0);"  onclick="this.disabled=true; CheckRequired(this);"/>
    </div>

    <div class="w3-row w3-center w3-padding-0 c-cre1" style="min-height:30px;">
        <p class="c-fc c-fs c-cre2 notranslate">Powered by Chargerback</p>
    </div>


</form>
</div>
</div>

<input type="hidden" id="LaunchPop" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal"></input>

<!--Modal stuff here-->
  <div class="modal fade" id="myModal" tabindex="-1" role="modal">
  <div class="modal-dialog modal-sm">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title" id="myModalLabel">Your Lost Item Detail </h4>
      </div>      
      <div class="modal-body">
        <div id="itemAdditionalInfo"></div>
        
       </div>     
      
      <div class="modal-footer">
        <button style="float:left" id="SaveItemDetails" onclick="UpdatePopItemData();" type="button" class="btn btn-primary" >Save</button>
        <button  id="NextItem" style="display:none" onclick="NextItem();" type="button" class="btn btn-default" data-dismiss="modal">Add Another Item</button>
        <button id="DoneWithItems" style="display:none" type="button" class="btn btn-default" data-dismiss="modal">Done With Items</button>
       
      </div>
      </div>
  </div>
  </div>
<!--Modal stuff stop-->
</div>
</body>
</html>
