// Opens new window with appropriate page in right frame when specific page of massgifted.org is invoked
if (top == self) 
{
	var newwin = window.open('index.html');           // open new window to top level page
	var action = 'right.location.href = \"' + self.location.href + '\";';
	newwin.setTimeout(action ,400);
}


