defaultStatus =  'HELIO FERRETTI'
function tienda() { 
var url = 'tienda/base.html';
var width = 1024;
var height = 768; 
var izda= ((screen.availWidth-width)/2);
var superior= ((screen.availHeight-height)/2);
var ancho = screen.availWidth-width;
var alto = screen.availWidth-width;
if((ancho>800)&&(alto>600)) {
var specs = "fullscreen=no,left=" + izda +",top=" + superior +",screenX=0,screenY=0"; 
specs += ",width=" + width + ",height=" + height; 
specs += ",scrollbars=no,toolbar=no,menubar=no"; 
specs += ",status=no,location=no"; 
specs += ",directories=no,resizable=no,alwaysRaised"; 
//specs += ",innerHeight=" + height + ",innerWidth=" + width; 
}else{
var specs = "fullscreen=no,left=" + izda +",top=" + superior +",screenX=0,screenY=0"; 
specs += ",width=" + width + ",height=" + height; 
specs += ",scrollbars=yes,toolbar=no,menubar=no"; 
specs += ",status=no,location=no"; 
specs += ",directories=no,resizable=no,alwaysRaised"; 
//specs += ",innerHeight=" + height + ",innerWidth=" + width; 	
}
var Popup = window.open(url, 'helio', specs); 
Popup.resizeTo(width,height);
}


function popup(ventana) { 
var url = ventana;
var width = 380;
var height = 350; 
var izda= ((screen.availWidth-width)/2);
var superior= ((screen.availHeight-height)/2);
var ancho = screen.availWidth-width;
var alto = screen.availWidth-width;
var specs = "fullscreen=no,left=" + izda +",top=" + superior +",screenX=0,screenY=0"; 
specs += ",width=" + width + ",height=" + height; 
specs += ",scrollbars=yes,toolbar=no,menubar=no"; 
specs += ",status=no,location=no"; 
specs += ",directories=no,resizable=no,alwaysRaised"; 
//specs += ",innerHeight=" + height + ",innerWidth=" + width; 	
var Popup = window.open(url, 'video', specs); 
Popup.resizeTo(width,height);
}


