//Local Variable with Flash Content id. default = flashcontent
var as_swf_name = "flash_content";

//Initialize Facebook
function fbInit(pAsSwfName,pApi_key,pReceiver){
	as_swf_name = pAsSwfName;
	FB.init(pApi_key,pReceiver, {permsToRequestOnConnect : "user_photos", "ifUserConnected":onConnected});
}

function onConnected(){
	FB.Facebook.apiClient.users_hasAppPermission('user_photos',function(result) {
		if (result === 0) {
			// render the permission dialog
			FB.Connect.showPermissionDialog('user_photos');
		}
	});
} 

//Method to dispatch an Event to Flash
function flashCallBack ( func ) {
	if( arguments.length > 1 ){
		document[as_swf_name][func]( Array.prototype.slice.call(arguments).slice(1)[0]);
	}else{
		document[as_swf_name][func]();
	}
}

function streamPublish(id, name, image){
	var attachment = {
		"name": name+" IS THE NEXT KICK-ASS!",
		"href": "http://www.iwillkickass.com/",
		"description": "Become Kick-Ass to win a Sony PS3. Own Kick-Ass on Blu-ray, DVD, or Digital Download.",
		"media": [{"type": "flash", "swfsrc": "http://www.iwillkickass.com/external_KA.swf?id="+id+"&name="+name+"&picture=http://www.iwillkickass.com/"+image, "imgsrc": "http://www.iwillkickass.com/upimages/tn_"+id+".png", "width": "59", "height": "90", "expanded_width": "460", "expanded_height": "195"}]
	};
	var actionLinks = [{"text": "Own Kick-Ass", "href": "http://www.bestbuy.com/site/olstemplatemapper.jsp?st=kick%20ass&list=y&nrp=15&cp=1&id=pcat17071&sc=Global&usc=All%20Categories&utm_medium=awe.sm-twitter&type=page&utm_source=twitter.com&_dynSessConf=-1754734579172002238&sp&ks=960&_dyncharset=ISO-8859-1&qp=crootcategoryid%23%23-1%23%23-1~~q6b69636b20617373~~ccat02015%23%230%23%233~~nf472||436f6d656479&utm_content=site-demo&iht=n"}];
	FB.Connect.streamPublish('',attachment,actionLinks); 
}

function postToTwitter(id){
	LeftPosition = (screen.width) ? (screen.width-780)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-570)/2 : 0;
	window.open('http://twitter.com/home?status='+encodeURIComponent('Become the next Kick Ass to win a Sony PS3 and Red Mist branded PSP! Kick-Ass on DVD August 3rd.  http://www.iwillkickass.com'),'sharer','toolbar=0,scrollbars=1,status=0,width=780,height=570,top='+TopPosition+',left='+LeftPosition);
	return false;
}