/**
* Abre el popup de Careers
* 
* @author	Federico Campo Piombi
* @version	1.0
* @since	01 APR 2009
*/
function openCareers(){
  var url = "http://tbe.taleo.net/NA8/ats/careers/jobSearch.jsp?org=YRBRANDS&cws=10";
  var siteCenter = _getScreenCenter();
  var wndWidth = 600;
  var wndHeight = 590;
  var xpos = siteCenter.x - (wndWidth/2);
  var ypos = siteCenter.y - (wndHeight/2) - 20;
  window.open(url,'','width=' +wndWidth+ ',height=' +wndHeight+ ',left=' +xpos+ ',top=' +ypos+ ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1');
};

/**
* Calcula el centro de la pantalla y retorna un objeto con la posicion X e Y
* 
* @author	Federico Campo Piombi
* @version	1.0
* @since	05 May 2007
* 
* @return	Object
*/
function _getScreenCenter(){
	var point = {x:screen.width/2, y:screen.height/2};
	return point;
}