function boxDownload(_type,_ref)
{
	if(_type=='PDF')
		window.open('box_print_'+_ref+'.pdf','Exportation','scrollbars=1,toolbar=0,status=0,width=626,height=436');
}


function boxShare(_ref,_title,_url,_visibility)
{
	var sharebox = document.getElementById('sharebox');
	var sharecontent = document.getElementById('sharecontent');

	if(_visibility==1)
	{
		sharecontent.style.display="";
		sharebox.style.display="none";
	}
	else
	{
		sharecontent.style.display="none";
		sharebox.style.display="";
	}
}

function shareThis(_plateform,_ref,_title,_url)
{
	u=encodeURIComponent(_url);
	t=encodeURIComponent(_title);
	
	switch(_plateform)
	{
		case 'linkedin':	
			window.open('http://www.linkedin.com/shareArticle?mini=true&url='+u+'&title='+t,'sharer','toolbar=0,status=0,width=626,height=436');
			break;
		case 'viadeo':	
			window.open('http://www.viadeo.com/shareit/share/?url='+u+'&title='+t+'&overview='+t+'&urllanguage=fr&urlaffiliate=32003&encoding=UTF-8&urlpicture=http://www.viadeo.com/images/shareit/viadeoflower.gif','sharer','toolbar=0,status=0,width=626,height=436');
			break;
		case 'google':	
			window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+u+'&title='+t,'sharer','toolbar=0,status=0,width=626,height=436');
			break;
		case 'facebook':
			window.open('http://www.facebook.com/sharer.php?u='+u+'&t='+t,'sharer','toolbar=0,status=0,width=626,height=436');
			break;
		case 'yahoo':
			window.open('http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u='+u+'&t='+t  ,'sharer','toolbar=0,status=0,width=626,height=436');
			break;
		case 'delicious':
			window.open('http://delicious.com/save?url='+u+'&title='+t+'&v=5&share=yes&jump=close&time='+date.getTime(),'sharer','toolbar=0,status=0,width=626,height=436');
			break;
		case 'myspace':
			window.open('http://www.myspace.com/Modules/PostTo/Pages/?t='+t+'&u=+'+u+'&l=1','sharer','toolbar=0,status=0,width=626,height=436');
			break;
	}
}




function boxPrint(_ref)
{
	window.open ('offer_clean_'+_ref+'.html', 'Print friendly', config='height=600, width=700, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no')
}

function boxEmail(_ref)
{
	boxOpen("box_email.php?ref="+_ref,550,300,2);
}

