﻿// JScript File

function PopupRuta(page,name,width,height)
{
	var left = (screen.width-width)/2;
	var top = (screen.height-height)/2;
	window.open(page,name, "left="+left+",top="+top+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width="+width+",height="+height);
}