var share_box_websites = {
					facebook : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'Facebook',
						'url': 'http://www.facebook.com/share.php?u=',
						'icon':'/common/js/sbimages/facebook.png',
						'sizes':{'width':70,'height':70}
					},
					twitter : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'Twitter',
						'url': 'http://twitter.com/home?status=',
						'icon':'/common/js/sbimages/twitter.png',
						'sizes':{'width':70,'height':70}
					},
					delicious : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'Delicious',
						'url': 'http://del.icio.us/post?url=',
						'icon':'/common/js/sbimages/delicious.png',
						'sizes':{'width':70,'height':70}
					},
					digg : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'Digg',
						'url': 'http://digg.com/submit?phase=2&url=',
						'icon':'/common/js/sbimages/digg.png',
						'sizes':{'width':70,'height':70}
					},
					linkedin : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'LinkedIn',
						'url': 'http://www.linkedin.com/shareArticle?mini=true&ro=false&url=',
						'icon':'/common/js/sbimages/linkedIn.png',
						'sizes':{'width':70,'height':70}
					},
					reddit : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'Reddit',
						'url': 'http://reddit.com/submit?url=',
						'icon':'/common/js/sbimages/reddit.png',
						'sizes':{'width':70,'height':70}
					},
					stumbleupon : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'StumbleUpon',
						'url': 'http://stumbleupon.com/submit?url=',
						'icon':'/common/js/sbimages/stumble.png',
						'sizes':{'width':70,'height':70}
					},
					tumblr : {
						'active': true,
						'encode':true, // If sharing is not working, try to turn to false
						'title': 'tumblr',
						'url': 'http://www.tumblr.com/login?s=&t=',
						'icon':'/common/js/sbimages/tumblr.png',
						'sizes':{'width':70,'height':70}
					}
};


	function openWebShareBox(socialWebsite){
	
	 var stile = "top=10, left=10, width=700, height=500, status=no, menubar=no, toolbar=no scrollbar=no";
	 
	 current_website = share_box_websites[socialWebsite];
	 url = (current_website.encode == true) ? encodeURIComponent(window.location.href) : window.location.href;
	 window.open(current_website.url + url, "", stile);
     
	}

