function openBrWindow (theURL) {
	var CustLogin = "https://www.usmedtrans.com/hcm/index.jsp" ;
	var TransLogin = "https://www.usmedtrans.com/hcm/TransHome.htm" ;	
	
	switch (theURL) {
	case 'C': 
		theURL = CustLogin
		break;
	case 'T':
	  theURL = TransLogin;
		break;
	default:
		break;
	}
	
	window.open (theURL, 'newwindow', 'toolbar=yes, location=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes');
}

function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}
