function move(url) {
	if(!window.opener || window.opener.closed){ 
		window.open(url); }
	else {
		window.opener.location = url; }
 }

