<!--

function changeLocation(href)
{
	var topWin;
	
	topWin = self.top;
	topWin.location.replace(href);
	
	topWin = Null;
}

function selectMedia(href)
{
	changeLocation(href);
}

-->