function disclaimer(url)
{
	myPopup('external_rowlands.html?targetURL='+escape(url),'','width=540,height=525,resizable=yes');
}

function externalLink()
{
	window.open(unescape(getParameter('targetURL')));
	window.close();
}

function getParameter(name)
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}

function myPopup(a,b,c)
{
	window.open(a,b,c);
}

