// JavaScript Document

<!--
function newWin(urlIn) 
{
	window.open(urlIn, 'NewWin', 'scrollbars=yes,resizable,width=680,height=420');
}
function newWinT(urlIn)
{
	window.open(urlIn, '','status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable,width=680,height=420');
}	
function popupUserLogin() 
{
	window.open('UserLogin.cfm','LogIn','scrollbars=yes,resizable,width=400, height=200');
}
function popupUserLogout()
{
	window.open('UserLogOut.cfm','LogOut','scrollbars=yes,resizable,width=400, height=200');
}
function DisplayMessage(msg,title)
{
	var x = window.open('', '', 'resizable=yes,width=300,height=200');
	if(x.opener==null){x.opener=self;}
	x.document.write('<html><head><title>' + title + '</title><' + '/' + 'head><body text="#000000" bgcolor="#ffffff"><p align="left">' + msg +'</p></body></html>');
}
// -->

