var productid;
var url = window.location;
var title;
var text;

$(document).ready(function() {
	productid = $("#productid").html();
	title = $("#product_title").html();
	$("#share").dialog({
		bgiframe: true,
		autoOpen: false,
		height: 500,
		width: 900,
		modal: true
	});
	$(".share").click(function() {
		var name = $(this).attr("name");
		if(name)
		{
			$("#share").dialog('option', 'title', name);
			eval(name + "()");
		}
	});
});	

function mail()
{
	$('#share').dialog('option','width',400)
	$.ajax({  
		type: "POST",  
		url: $("#siteurl").html() + "product/mail/"+ productid + "/",
		data: "product_url="+url+"",
		success: function(msg) {
			if(msg.length > 10)
			{
				$("#share").html(msg);
			} 
		}   
	});

	$("#share").dialog( 'open' );
}

function hyves()
{
	$('#share').dialog('option','width',600)
	$("#share").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" style="color: #fff;"/>');
	$("#modalIframeId").attr("src","http://www.ardeau.nl/product/hyves/"+productid+"/");
	$("#modalIframeId").css("color", "#fff");
	$("#share").dialog( 'open' );
}

function facebook()
{
	$('#share').dialog('option','width',700)
	$("#share").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />');
	$("#modalIframeId").attr("src","http://www.facebook.com/sharer.php?u="+ url +"t="+ title +"");
	$("#share").dialog( 'open' );
}

function delicious()
{
	$('#share').dialog('option','width',900)
	$("#share").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />');
	$("#modalIframeId").attr("src","http://delicious.com/save?url="+ url +"&title="+ title +"");
	$("#share").dialog( 'open' );
}

function google()
{
	$('#share').dialog('option','width',800)
	$("#share").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" />');
	$("#modalIframeId").attr("src","http://www.google.com/bookmarks/mark?op=add&bkmk="+ url +"&title="+ title +"");
	$("#share").dialog( 'open' );
}

function fav()
{
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; 
	}
}
