function MakeBottomWindowAR() {
// Change URL for the new, bottom window.
var url = 'http://trashtotreasuregurl.com/subscribe-pop.html';
// Width and height of new window (specified in pixels).
var width = '290';
var height = '600';
// Nothing else needs changing.
var p = 'scrollbars=no,resizable=no,toolbar=no,' +
'menubar=no,status=no,location=no,left=0,top=0,height=' +
height + ',width=' + width;
var botwin = window.open(url,"bwar",p);
self.focus();
}
MakeBottomWindowAR();
