addLoadEvent( linkyPop );
function linkyPop()
{
    var lnks = document.getElementsByTagName( "a" );
    for( var i=0;i<lnks.length;i++ )
    {
        if( lnks[i].getAttribute( "rel" ) == "newwin" )
        {
            //attach event
            lnks[i].onclick = function()
            {
                wintarget = this.href;
                var width = 325
                var height = 490;
                var top = 200;
                var left = 200;
                var attributes = 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',resizable=yes,scrollbars=yes';
                newWin = window.open( wintarget, 'signMeUp', attributes );
                return false;
            }
        }
    }
}
