<!--
// Copyright (c) 2000 internet.com Corp. 
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}

function launchRemote(page) {
        if(page==0){
                myRemote = launch("gluteoplastia.html", "void", "width=360,height=460,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,left=0,top=0");
        }
        if(page==1){
                myRemote = launch("../gluteoplastia.html", "void", "width=360,height=460,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,left=0,top=0");
        }
        if(page==2){
                myRemote = launch("unidad_endomet.html", "unidad", "width=360,height=460,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,left=0,top=0");
        }
}

// -->