
// SCRIPT PARA ABRIR UNA VENTANA "LIMPIA"

var page;
var h;
var w;
function popupPage(page, h, w) {

	windowprops = "height=" + h + ",width=" + w + ",location=no," + "menubars=no,toolbars=no,resizable=no, status=no, top=30, left=30";
	window.open(page, "Popup", windowprops);
}

function popupFlash() {

	var page = "http://www.bovalpo.com/flash/index.html"

	windowprops = "height=" + 400 + ",width=" + 680 + ",location=no," + "menubars=no,toolbars=no,resizable=no, status=no, top=30, left=30";
	window.open(page, "Popup", windowprops);
}

function popupPageResizable(page, h, w) {

	windowprops = "height=" + h + ",width=" + w + ",location=no," + "menubars=no,toolbars=no,resizable=yes, status=no, top=30, left=30";
	window.open(page, "Popup", windowprops);
}

function popupPageScroll(page, h, w) {

	windowprops = "height=" + h + ",width=" + w + ",location=no," + "scrollbars=yes,menubars=no,toolbars=no,resizable=no, status=no, top=30, left=30";
	window.open(page, "Popup", windowprops);
}

function popupPageResizableScroll(page, h, w) {

	windowprops = "height=" + h + ",width=" + w + ",location=no," + "menubars=no,toolbars=no,resizable=no, status=no, top=30, left=30";
	window.open(page, "Popup", windowprops);
}
