﻿
        
        function boxOffHover(box) {
box.style.background='#ffcc33';
}

function boxOnHover(box) {
box.style.background='#ffee99';
}

 function CreateNew()
   {
        var div = $get('ctl00_ContentPlaceHolder1_DropDownList1');
        window.location.href="../../admin/ContactForm/CreateNewContact.aspx?ContactID=" + div.value;
    }

    $(document).ready(function() { /* This is basic - uses default settings */$("a#single").fancybox(); /* Using custom settings */$("a#inline").fancybox({ 'hideOnContentClick': true }); $("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false }); }); 