var mb_name;
var mb_link;

// Open blog about window
function openBlogAbout(product_id, id) {
	mb_name = new MultiBox(id, {useOverlay: true, openFromLink: true, showControls: false});
	mb_link = $(id);
	
	mb_link.setProperty('href',('/pp_scripts/blog_about_product.php?products_id=' + product_id)); 
	mb_link.setProperty('rel',('width:520,height:400'));
	mb_name.open(mb_link); // call the open function on the multibox object, passing the <a> element to it
}

// Close window
function closeBlogAbout() {
	mb_name.close(mb_link);
}

// Facebook link
function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}