 function open_in_opener(LINK)
 {
     if (window.opener.location.href != LINK)
     {
        window.opener.location.href = LINK;
     }
	 window.opener.focus();
 }
