
// 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";
	return window.open(page, "Popup" + new Date().getTime(), 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";
	return window.open(page, "Popup" + new Date().getTime(), 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";
	return window.open(page, "Popup" + new Date().getTime(), windowprops);
}

function popupPageResizableScroll(page, h, w) {

	windowprops = "height=" + h + ",width=" + w + ",location=no," + "scrollbars=yes,menubars=no,toolbars=no,resizable=yes, status=no, top=30, left=30";
	return window.open(page, "Popup" + new Date().getTime(), windowprops);
}
