// JavaScript Document

function Cambiar_Ventana(theURL) {

var windowprops ="";
window.open(theURL,'_self');

}

function Abrir_Ventana(theURL,w,h,name) {
var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=no, resizable=yes,width=" + w + ",height=" + h;
var ventana=window.open(theURL,name,windowprops,true);
ventana.focus();
}

function Abrir_Ventana_Foto(theURL,w,h,modelo) {
var windowprops ="top=0,left=0,toolbar=no,location=no,status=no, menubar=no,scrollbars=no, resizable=no,width=" + w + ",height=" + h;
var ventana=window.open(theURL,'foto',windowprops,true);
ventana.resizeTo(w,(h+50)); 
ventana.focus();

}

function Insertar_sub_Ventana(URL,w,h){
	document.write('<iframe name="subwindow" src="'+URL +'" width="'+w+'" height="'+h+'" marginwidth="0" scrolling="no" ALLOWTRANSPARENCY="true" frameborder=1 class="frame" ></iframe>');
}



