/*js functions*/
function popupWindow(url)
{
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=450,height=270,screenX=150,screenY=150,top=150,left=150')
}

function showLoginDiv()
{
	document.getElementById('customerLoginForm').style.display = 'block';	
	document.getElementById('customerForgotPasswordForm').style.display = 'none';
	document.getElementById('str_coustomer_email_address').focus();
}

function showForgotPasswordDiv()
{
	document.getElementById('customerLoginForm').style.display = 'none';
	document.getElementById('customerForgotPasswordForm').style.display = 'block';
	document.getElementById('str_coustomer_email_address_forgot').focus();
}

function showForgotPasswordForm()
{
	document.getElementById('nlAjaxLayerLogin').style.display = 'none';
	document.getElementById('nlAjaxLayerForgotPassword').style.display = 'block';
	document.getElementById('str_customer_email_id').focus();
}