function resizeColumns()
{
	
	if (typeof document.body.style.maxHeight != "undefined") {
			
		if(navigator.userAgent.indexOf("Firefox")!=-1)
		{
			H = document.body.scrollHeight - 485;
		}
		else
		{
			//IE 7, Mozilla
		   H = document.body.scrollHeight - 525;
		}
	} else {
	   // IE 6
	   H = document.body.scrollHeight - 540;
	}

   document.getElementById('FeaturedTwo').style.height=H+'px';
   document.getElementById('FeaturedRight').style.height=H+'px';	
}

function popUpSecurity(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=500');");
}

