// Passed parameter from Flash

function openShareLink(pSocialApp) {
	var result = null;
	var urlToAdd = "http://kraft.promotions.com/smoresiwg/";
	var urlPageTitle = "Kraft S'mores Truly Yours";
	switch(pSocialApp) {
		case "0": result = 'http://www.mixx.com/submit?page_url=' + urlToAdd; break;
		case "1": result = 'http://digg.com/submit/?url=' + urlToAdd; break;
		case "2": result = 'http://www.facebook.com/sharer.php?u=' + encodeURIComponent(urlToAdd) + '&t=' + encodeURIComponent(urlPageTitle); break;
		case "3": result = 'http://del.icio.us/post?url=' + encodeURIComponent(urlToAdd) + '&amp;title=' + encodeURIComponent(urlPageTitle); break;
		case "4": result = 'http://reddit.com/submit?url=' + encodeURIComponent(urlToAdd) + '&amp;title=' + encodeURIComponent(urlPageTitle); break;
		case "5": result = 'http://www.stumbleupon.com/submit?url=' + encodeURIComponent(urlToAdd); break;
		case "6": result = 'http://www.myspace.com/Modules/PostTo/Pages/?u=' + encodeURIComponent(urlToAdd) + 't=' + encodeURIComponent(urlPageTitle); break;		
		default: result = 'null';
	}
	if (result) {
		window.open (result,"socialWindow","location=0,status=0,scrollbars=0,width=650,height=550"); 	
	}
}
