// JavaScript Document
//
//
//
function JS_sharer(service_name, service_prefixe, service_suffixe, url, titre){
	//
	//
	//
	var url_encoded = encodeURIComponent(url)
	var url_encoded_get = url.replace("\/src\/", "/?image=")
	var titre_encoded = encodeURIComponent(titre)
	//
	if (service_name=='twitter'){
		var full_service_req = service_prefixe+'Image+on+Ununtitled+:+'+url
	} else if (service_name=='digg'){
		var full_service_req = service_prefixe+url+service_suffixe+'Ununtitled+-+Graphic+Design'
	} else if (service_name=='facebook') {
		//alert(url_encoded_get)
		var full_service_req = service_prefixe+url_encoded_get
	} else {
		var full_service_req = service_prefixe+url_encoded+service_suffixe+titre_encoded
	}
	//
	//alert(full_service_req)
	window.open(full_service_req, "_blank");
}
//
//
//
//javascript:var%20d=document,f='http://www.facebook.com/share',l=d.location,e=encodeURIComponent,p='.php?src=bm&v=4&i=1248092220&u='+e(l.href)+'&t='+e(d.title);1;try{if%20(!/^(.*\.)?facebook\.[^.]*$/.test(l.host))throw(0);share_internal_bookmarklet(p)}catch(z)%20{a=function()%20{if%20(!window.open(f+'r'+p,'sharer','toolbar=0,status=0,resizable=1,width=626,height=436'))l.href=f+p};if%20(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0)




