/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function facebookSignup(){    
    FBConnect.login();
}

// Set Browser Cookie
function setCookie(c_name,value,exdays)
{
    var domain = "showoff.com";
    var path = "/";
    var exdate=new Date();
    exdate.setDate(exdate.getDate() + exdays);
    var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
    c_value = c_value +  ( ( domain ) ? ";domain=" + domain : "" ) +
    ( ( path ) ? ";path=" + path : "" );
    document.cookie=c_name + "=" + c_value;
}

// Get Browser Cookie
function getCookie(c_name)
{
    var i,x,y,ARRcookies=document.cookie.split(";");
    for (i=0;i<ARRcookies.length;i++)
    {
      x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
      y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
      x=x.replace(/^\s+|\s+$/g,"");
        if (x==c_name)
        {
            return unescape(y);
        }
        else 
            return null;
    }
}

function checkCookie()
{
    var username=getCookie('fbShowoffSignup');
    if (username!=null && username!="")
      {
        //alert("Welcome again " + username);
      }
    else
      {
      username=prompt("Please enter your name:","");
      if (username!=null && username!="")
        {
            setCookie('fbShowoffSignup',username,365);
        }
      }
}

function share_feed(title, desc, href, image){    
    FBConnect.publish(title, desc, href, image);
}
