var newWindow = null;
var gEmailMeWinWidth = 400;
var gEmailMeWinHeight = 350;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpWin(url, type, strWidth, strHeight){
	
	closeWin();
	
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 160;
	}
	
	var tools="";
	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

// Show-Hide, taken from http://www.learningjquery.com/2007/02/more-showing-more-hiding

$(document).ready(function() {
	$('div.showHide > div.moreInfoWrap').hide();  
	$('div.showHide > div.showMoreInfo').click(function() {
		$(this).next().slideToggle('fast', function(){
			if ($(this).is(':hidden'))			
				$(this).prev('div.showMoreInfo').children('p.moreLink').html('Read more.');	
            else
            	$(this).prev('div.showMoreInfo').children('p.moreLink').html('Hide.');
		});
	});
});



// Login form
function clearField(field)
{
	if(field=='login')
	{
		if(document.getElementById('login_text').value=='Member Login')
		{
			document.getElementById('login_text').value='';
			document.getElementById('login_text').focus();
		}
	}
	else if (field=='pword')
	{
		if(document.getElementById('login_pword').value=='Password')
		{
			document.getElementById('passwordInput').innerHTML='<input id="login_pword" class="searchboxinputtext" type="password" name="PASSWORD" value="" onblur="returnField(\'pword\')" />';
			setTimeout(function() {document.getElementById('login_pword').focus();}, 10);
		}
	}
}


function returnField(field)
{
    if(field=='login')
    {
        if(document.getElementById('login_text').value=='')
        {
            document.getElementById('login_text').value='Member Login';
        }
    }
    else if (field=='pword')
    {
        if(document.getElementById('login_pword').value=='')
        {
			document.getElementById('passwordInput').innerHTML='<input id="login_pword" class="searchboxinputtext" type="text" name="PASSWORD" value="Password" onFocus="clearField(\'pword\')" />';
        }
    }

}

