/*
###############################################################################
# (C) 2007 EVO Sistemas Libres <central@evosistemas.com>
# windowmngmt.js
# Manejo de ventanas del navegador desde JavaScript
###############################################################################
*/

function newWindow(url,width,height,onlyframe){
	var options='width=' + width + ',height=' + height
	if (onlyframe){
		options+=',toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=0'
	}
	var a=window.open(url,'newwindow',options);
}