// link from popup to parent w/d
// create parent if parent ! exist

function goHere(url) {

	if (window.opener) {
		window.opener.location=url;
	}
	else {	
		window.open(url);
	}	

}

function clean(something) {
	s = new String(something);
	s = s.replace(/%20/g," ");
	s = s.replace(/%C3%A9/g,"&eacute;");
	s = s.replace(/%27/g,"'");
	document.write(s);
}

