﻿var intCurrentSize = 100;
	
	function SetTextSize(strElementID)
	{
		var divCurrent = document.getElementById(strElementID);

		if(divCurrent)
		{
			divCurrent.style.fontSize = intCurrentSize + '%';
		}
	}

	function DoTextResizes()
	{
		SetTextSize('content');
	}

	function SendToAFriend()
	{
		var strHeadline = document.getElementById('ds-headline').firstChild.firstChild.nodeValue;
		strHeadline = encodeURI(strHeadline);

		var strURL = 'Send2AFriend.aspx?Headline=' + strHeadline; 
		window.open(strURL,'send2friend','width=300,height=400,menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=no,top=50,left=50'); 

	}
	
	
function SmallTextSize()
	{
		intCurrentSize = 100;
		DoTextResizes();
		SetAllColumnHeights();
		
	}
	
	function MiddleTextSize()
	{
		intCurrentSize = 110;
		DoTextResizes();
		SetAllColumnHeights();
		
	}
	
	function LargeTextSize()
	{
		intCurrentSize = 120;
		DoTextResizes();
		SetAllColumnHeights();
		
	}