// JavaScript Document

var vpopup = {

width: null,
height: null,
popupref: null,


show:function(popupid, style,width,height) {
	
	if (this.pwin == undefined) {

	this.pwin = new Window('pwin'+popupid, {className: "mac_os_x", title: 'Ventana', width: width+10, height: height+10,  resizable: false, maximizable: false } ); 
	}
	this.pwin.getContent().innerHTML = $('popup_'+popupid).innerHTML;
	this.pwin.showCenter();	
	
},

show2:function(popupid, style,width,height) {

	if (this.pwin2 == undefined) {

	this.pwin2 = new Window('pwin2'+popupid, {className: "mac_os_x", title: 'Ventana', top:10, left:10, width: width+10, height: height+10,  resizable: false, maximizable: false } ); 
	}
	this.pwin2.getContent().innerHTML = $('popup_'+popupid).innerHTML;
	this.pwin2.show();	
		

	
	
},
	
showpopup:function(popupid) {

 this.popupref=window.open('','myconsole',
  'width='+this.width+',height='+this.height
   +',menubar=0'
   +',toolbar=0'
   +',status=0'
   +',scrollbars=0'
   +',resizable=1');
 this.popupref.document.write('<html><head><title>Ventana</title></head><body onload="window.focus();"><link rel="stylesheet" type="text/css" href="/css/popup.css" />'+$('popup_'+popupid).innerHTML+'</body></html>');

 this.popupref.document.close();

}



	
	
}
