function openWindow() {
aWindow=window.open('bio.html','bio',"toolbar=no,width=400,height=465,status=no,scrollbars=no,resize=no,menubar=no,left=30,top=30");
}

/* get rid of this function when working on guestbook */
function openWindowRemote() {
aWindow=window.open('http://www.alexoana.com/bio.html','bio',"toolbar=no,width=400,height=300,status=no,scrollbars=no,resize=no,menubar=no,left=50,top=50");
}

function goNclose(URL) {
if (opener.parent.frames.length == 0)
	{
	opener.location.href=URL;
	}
	else
	{
	opener.parent.location.href=URL;
	}
self.close();
}