/*
	Hotel Room Selection Options...
*/

function ShowHideRooms(obj)
{
	/// Get No of Rooms
	var rooms=obj.options[obj.selectedIndex].value;
		
	/// Get Div for Room
	var divRHoom2=document.getElementById('divHRoom2');
	
	/// If No Room Div there, Return
	if(!divRHoom2)
		return;
	
	/// Show hide by No of Rooms!
	if(rooms==1)
		divRHoom2.style.display='none';
	else
		divRHoom2.style.display='';
}

function ShowCard(obj) {

    /// Get No of Rooms
    var Cctype = obj.options[obj.selectedIndex].value;
    /// Get Div for Room
    var CVV = document.getElementById('txtCV2');
    CVV.value = "";
    /// If No Room Div there, Return
    if (!CVV)
        return;
    /// Show hide by No of Rooms!
    if (Cctype == "American Express")
        setLength('txtCV2', 4);
    else
        setLength('txtCV2', 3);

}

function setLength(id, length) {
    document.getElementById(id).setAttribute('maxLength', length);
}

