<!--
function popIn(id, title,address, height) 
{
	if(height == null)
	{
		height = 450;
	}
	document.getElementById(id).innerHTML = getPopTitle(id, 'popOut', title, address, height) + "<div id=popInFrame><iframe id='"+id+"Frame' scrolling=yes width=100% height="+height+"px frameborder=0 src='" + address + "'> Your browser does not support iframes, to enable install IE6, Mozilla/FireFox or Opera<br/><a href=\"JavaScript:void(0);\" onClick=\"window.open(\""+address+"','popup','toolbar=0,menubar=0,scrollbars=1,status=0,resize=1,width=650,height=650\");'>To continue without upgrading click this link</a></iframe></div>";
	frames[id+'Frame'].location.href = address;
}

function getPopTitle(id, inOut, title, address, height)
{
	var prefix;
	if(inOut == 'popIn')
	{
		prefix = '+';
	}	
	if(inOut == 'popOut')
	{	
		prefix = '-';
	}
	var returns ="<p class=\"popInTitle\"><a href=\"JavaScript:void(0);\" onclick=\"" + inOut + "('" + id + "','" + title + "','" + address + "'," + height +");\">" +  prefix + " " + title + " </a></p>"
	return returns;
}

function popOut(id, title, address, height)
{
	document.getElementById(id).innerHTML = getPopTitle(id, 'popIn', title, address, height);
}
//-->