﻿function LocationFocused(thecontrol)
{
    if(thecontrol.value == 'Separate With Comma(,)')
    {
        thecontrol.value = "";
        thecontrol.style.color = "Black";
    }
}

function LocationBlur(thecontrol)
{
    if(thecontrol.value == '')
    {
        thecontrol.value = 'Separate With Comma(,)';
        thecontrol.style.color = "#cccccc";
    }
}

function CheckinFocus(theControl)
{
    if(theControl.value == 'Check-in Date')
    {
        theControl.value = '';
        theControl.style.color = "Black";
    }
}

function CheckinBlur(theControl)
{
    if(theControl.value == '')
    {
        theControl.value = 'Check-in Date';
        theControl.style.color = "#cccccc";
    }
}

function CheckoutFocus(theControl)
{
    if(theControl.value == 'Check-out Date')
    {
        theControl.value = '';
        theControl.style.color = "Black";
    }
}

function CheckoutBlur(theControl)
{
    if(theControl.value == '')
    {
        theControl.value = 'Check-out Date';
        theControl.style.color = "#cccccc";
    }
}