function popUp(page, pageName, width, height, scrollbars) { 
		OpenWin = this.open(page, pageName, "toolbar=no, menubar=no ,location=no, scrollbars=" + scrollbars + ", resizable=no, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
}
// Flash related
function getFlashMovie(movieName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
}
function sendCall() {
  getFlashMovie("website").sendToFlash();
}
function setFlashHeight(divid, newHeight){
	document.getElementById(divid).style.height = newHeight+"px";
}
//
function setBookmark(url,title){
	if(document.all){
		window.external.AddFavorite(url,title);
	} else if(window.sidebar){
		window.sidebar.addPanel(title,url,'');
	}
}
function terminos(){
	popUp("legal.html","legal",600,450,"yes");
}

