﻿function resizeText(multiplier) {
	if (document.body.style.fontSize == "") {
		document.body.style.fontSize = "0.95em";
	}
	
	document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em";
}

function OpenFriendTip(pageId)
{
    var targetUrl = "/UI/Templates/Tip.aspx?keepThis=true&pageId="+pageId;
        
    //These values must be placed last in the query...
    targetUrl += "&TB_iframe=true&height=300&width=796";
        
    tb_show("", targetUrl, false);
}

function OpenMovie(URL, width, height)
{
    //These values must be placed last in the query...
    URL += "&TB_iframe=true&height=" + height + "&width=" + width;
        
    tb_show("", URL, false);
}