// BetterTrolley.com Master JavaScript Repository

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=372,height=372,status=no,menubar=no,scrollbars=yes');
return false;
}

function delineate2(str){
	point = str.lastIndexOf("=");
	return(str.substring(point+1,str.length));
}