﻿
function showProfile(cokiename,city,nannyID)
{
    setCookie("nannyprofile",cokiename + "$" +city);
    window.location.href = "../Quick-Nanny-Profile-"+nannyID +".html";
}

function showFamilyProfile(cokiename,city,familyID)
{
    setCookie("familyprofile",cokiename + "$" +city);
    window.location.href = "../Quick-Family-Profile-"+familyID +".html";
}


function setCookie(name, value)
{
    var today = new Date(); 
    var expiry = new Date(today.getTime() + 30 * 86400 * 1000); 
    document.cookie = name + "=" + escape(value) + "; expires=" + expiry.toGMTString() + "; path=/";
}