//Facebook Publisher
function fbPublish(msg)
{	
	 var cap = 'Have you heard about SELECT 55? Its brand new and the Lightest Beer in the World but it also tastes great. I think you will really like it!';
     if(msg != ""){
		switch(msg){
		case "coors_light":
			cap = "340 push-ups to burn off one Coors Light? SELECT 55 is so light, I can burn its 55 calories with a 54-minute nap.";
			break;
		case "corona_light":
			cap = "12 minutes of pull-ups to burn off a Corona Light?  SELECT 55's so light I can burn 1 off by watching TV for 49 minutes.";
			break;
		case "miller_lite":
			cap = "44 minutes of thumb wrestling to burn off a Miller Lite? Dancing for 11 minutes burns off a Select 55.";
			break;
		case "white_wine":
			cap = "720 jumping jacks to burn off a glass of white wine? With Select 55 all you need is 9 minutes of lawn mowing.";
			break;
		case "long_island_iced_tea":
			cap = "920 sit-ups to burn off a long island ice tea?  Select 55's so light I can burn 1 off by surfing the web for 33 minutes.";
			break;
		case "margarita":
			cap = "Jogging 3.4 miles to burn off 1 margarita?  Select 55's so light, I can burn 1 off painting a room for 17 minutes.";
			break;
		}
	 }

	 FB.ui(
	 {
		 method:"stream.publish",
		 attachment:{
		   name:"Budweiser Select 55 | 55 Calorie Beer | The Lightest Beer in the World",
		   caption:cap,
		   description:"-",
		   href:"http://208.69.121.242/lightest-workout",
		   media:[{"type":"image","src":"http://208.69.121.242/assets/images/bg_bottle.jpg","href":"http://208.69.121.242/lightest-workout"}]
		 },
		 user_message_prompt:"Have you heard about SELECT 55?"
	});
}

//Twitter Publisher
function twPublish(msg,alt)
{
	var LeftPosition = (screen.width) ? (screen.width-800)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-400)/2 : 0;
	var settings = "height=400,width=800,top="+TopPosition+",left="+LeftPosition+",scrollbars=no,resizable=no,menubar=no,directories=no,location=no";
	var win = window.open("http://208.69.121.242/connect/twitter?msg="+msg+"&alt="+alt,"twitter",settings);
}

//Age-Gate Popup
function showLegal(pg)
{
	var LeftPosition = (screen.width) ? (screen.width-820)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-400)/2 : 0;
	var settings = "height=400,width=820,top="+TopPosition+",left="+LeftPosition+",scrollbars=yes,resizable=no,menubar=no,directories=no,location=no";
	var win = window.open("http://www.select-55.com/legal/"+pg,"legal",settings);
}
