function showhideObj( obj )
{ document.getElementById(obj).className = 
       document.getElementById(obj).className == "close" ? "open": "close";
}

function g(url){
  if (opener){
    if (opener.closed)
      {
	  window.open(url, "");
	  }
    else 
      {
	  opener.location.href = url;
	  }
	return false;
  }
return true;
}

function aaa ()
{
alert("d");
}

function getPopup(url, w, h, scroll) {
	if (url && w > 0 && h > 0) {
	
		posX = Math.floor((screen.width - 937 + 17) / 2);
		posY = Math.floor(screen.height - (screen.height - 115));
		
		if (!scroll || scroll == 'no')
		{scroll= 'no';}
		else{ scroll = 'yes';}
		window.open(url, null, 'channelmode=no, directories=no, fullscreen=no, width=' + w + ', height=' + h + ', left=' + posX + ', top=' + posY+ ', location=no, menubar=no, resizeble=no, scrollbars='+ scroll +', status=no, toolbar=no');
		return false;
	}
}