/*
*		LIB FBK V 1.3
*		AUTOR : NUEVA SPOCK LTDA
*		DATE  : 2012-02-09
*/
var uidfbk;
var eml;
var amgfbk=0;
var nmamgfbk="";
$(document).ready(function (){
	FB.init({
		appId  : '88403602427',
		status : true,
		cookie : true,
		xfbml  : true,
	   	oauth: true
	});				
});
							
function upSession(response){
	 if (response.authResponse) {
		 loadAmigos();
	 }else{
		 fbk_login();
		 //location.href="instrucciones.php";
	 }
}
							
function fbk_publish(){
	FB.ui({
		method: 'feed',
	    message: 'getting educated about Facebook Connect',
	    name: 'Rompela Flash Mob',
	    caption: 'Voy a ser fotógrafo del nuevo catálogo de Rómpela',
		description: (
		'Ya tengo mi Photo Pass para la sesión de fotos de la nueva colección jeans y zapatillas de Ripley, obtén tu Photo Pass en www.rompela.cl!'
	   	),
	   	link: 'http://www.rompela.cl',
	   	picture: 'http://www.rompela.cl/images/75x75.png',
	   	actions: [
					{ name: 'Rompela', link: 'http://www.rompela.cl' }
	   			 ],
	  	user_message_prompt: ''
	},
	function(response) {
		if (response && response.post_id) {
		} else {
		}
	  }
	);
}

function fbk_login(){
	FB.login(function(response) {
		if (response.authResponse) {
			uidfbk=response.authResponse.userID;
			idFBK=uidfbk;
			perfil(uidfbk);
   		} else {
   			//alert('Lo sentimos hay un problema de conexion, por favor intentalo mas tarde');
  		}
	},
	{scope:'read_stream,publish_stream,offline_access,email'});

}
