function openWindow(theURL, winName, features)
{
 window.open(theURL, winName, features);
}

function openBio(theURL, winName, features)
{
 bioURL = theURL.replace('&',"%26");
 window.open(bioURL, winName, features);
}

function openGenre(theURL, winName, features)
{
 genreURL = theURL.replace('&',"%26");
 window.open(genreURL, winName, features);
}

function name_me()
{
 self.name = "TheParent";
}