﻿// JScript File

function limpacampos()
{

	var txtUser = document.getElementById("User");
	var txtPass = document.getElementById("Pass");

	txtPass.value = "";
	
	if ((txtUser!=null) &&
		(txtPass!=null))
	{
	
	txtUser.value="";
		if (txtUser.value!="")
			txtPass.focus();
		else
			txtUser.focus();
			
	}
}

function PopUpWindow()
{
    window.open('/bernoulli_resolve/index.html','_search','width=1000,height=700,resizable=yes,scrollbars=yes,titlebar=no,location=no,menubar=no,status=no,sURL=no,channelmode=no,fullscreen=no,toolbar=0');
}
