function tellAFriend(pageId, config, culture)
{
    if(config == undefined)
        config = "Default";
        
    if(culture == undefined)
        culture = "sv-SE";
        
    var targetUrl = "/Templates/TellAFriend.aspx?keepThis=true&pageId="+pageId+"&CurrentConfig="+config+"&CurrentCulture="+culture;
        
    //These values must be placed last in the query...
    targetUrl += "&TB_iframe=true&height=250&width=382";
        
    tb_show("", targetUrl, false);
}

function clearTextBox(obj)
{
	if(obj!=null)
	{
		obj.value="";
	}
}
