// JavaScript Document
//Free JavaScripts on http://www.ScriptBreaker.com
var popup = false; // open the page in a new window
function login(form)
{
 ext = ".htm"
 dir = "https://www.secureprocess.net/" // the name of the directory
 url = dir + "casetracking/" + form.password.value + ext
 if(popup) window.open(url, "", "fullscreen=no,toolbar=no,status=no,menubar=mo,scrollbars=yes,resizable=yes,directories=no,location=no")
 else window.location = url
}
