function callOpener (url) {
if (window.opener && !window.opener.closed) window.opener.location=url;
else window.open(url,'subOpener','');
}
