
function OpenWindow (strURL) {
	alto = screen.height - 300;
	ancho = screen.width - 300;
	properties = 'toolbar=0, scrollbars=1, resizable=1, top=150, left=150, height=' + alto + ', width=' + ancho;
	var myWindow = window.open (strURL, null, properties);
}
