﻿/// <reference path="guid.js" />
/// <reference path="../../jquery/jquery-1.3.2.js" />

/// <reference path="../../jquery/jquery.cookie.js" />

function setUserGuid() {
    //if cookie guid=null  then set
    if ($.cookie("uid") == null) {
        var uid = getGuid();
        $.cookie("uid",uid , { path: '/' });
        //alert($.cookie("uid"));
    }
}