<!--
// ********************************************************************************
// Copyright © 2006-2007 
// The New England Organ Bank & The New England Program for Kidney Exchange
// Code developed by Tony Melendez, Senior Systems Engineer, NEOB
// 
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// · Redistributions of source code must retain the above copyright notice,
//   this list of conditions and the following disclaimer.
// · Redistributions in binary form must reproduce the above copyright notice,
//   this list of conditions and the following disclaimer in the documentation and/or
//   other materials provided with the distribution.
// · Neither the name of the New England Program for Kidney Exchange (NEPKE)
//   at the New England Organ Bank, Inc.,  nor the names of its contributors may be
//   used to endorse or promote products derived from this software without specific
//   prior written permission.
// ********************************************************************************

function startJob(sJobName)
{
	var sURL;
	
	sURL = 'admin_job.asp?j=' + sJobName;
	
	jobWin = window.open(sURL, "JobWin", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=250');
	
}

function doChangePass()
{
	sURL = 'change_pwd.asp';
	
	dtlWin = window.open(sURL, 'ChangePwdWin', 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=400,height=400');
}

function doGetPass()
{
	sURL = 'help_pwd.asp';
	
	dtlWin = window.open(sURL, 'HelpWin', 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=400,height=400');
}

function blockError()
{
	return true;
}
window.onerror = blockError;

function doRegister(sFor)
{
    var sURL;
    
    sURL = 'registration.asp?for=' + sFor;
    
    var RegWin = window.open(sURL, 'regWin', 'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=600,height=600');
}
// -->