<!--

function OpenNewWindow(url,winwidth,winheight)
{
	var NewWindow=window.open(url,'descr','width='+winwidth+',height='+winheight+',location=1,menubar=1,resizable=1,scrollbars=1,titlebar=1,toolbar=1');
	NewWindow.focus();
	return false;
}

function OpenPopupWindow(url,winwidth,winheight)
{
	var NewWindow=window.open(url,'popup','width='+winwidth+',height='+winheight+',location=0,menubar=0,resizable=1,scrollbars=1,titlebar=0,toolbar=0');
	NewWindow.focus();
	return false;
}
	
function setPointer(theField, thePointerColor)
{
    if (thePointerColor == '' || typeof(theField.style) == 'undefined') 
    {
        return false;
    }
    theField.style.backgroundColor = thePointerColor;
    return true;
}

function createEmail( user, site )
{
	document.write('<a href=\"mailto:'+ user + '@' + site +'\">' + user + '@' + site+'</a>');
}	




//-->