// JavaScript Document
function SelectNav(ID)
{
	document.getElementById(ID).className = "NavTopItem NavTopItemSelected";
}

function MediumWindow(URL,Name)
{
	var NewWindow = window.open(URL,Name,"width=700, height=600, scrollbars=1,location=0,toolbar=0 ");
	return NewWindow;
}

function SmallWindow(URL,Name)
{
	var NewWindow = window.open(URL,Name,"width=500, height=600, scrollbars=1,location=0,toolbar=0 ");
	return NewWindow;
}

function LargeWindow(URL,Name)
{
	var NewWindow = window.open(URL,Name,"width=1000, height=700, scrollbars=1,location=0,toolbar=0 ");
	return NewWindow;
}

function ConfirmSupportEmailForm()
{
	var error = 0;
	if (document.getElementById('Name').value=="") { error = 1; document.getElementById('Name').style.backgroundColor="red";	}
	if (document.getElementById('Practice').value=="") { error = 1; document.getElementById('Practice').style.backgroundColor="red";	}
	if (document.getElementById('Email').value=="") { error = 1; document.getElementById('Email').style.backgroundColor="red";	}
	if (document.getElementById('Phone').value=="") { error = 1; document.getElementById('Phone').style.backgroundColor="red";	}
	if (document.getElementById('Product').value=="") { error = 1; document.getElementById('Product').style.backgroundColor="red";	}
	if (document.getElementById('Subject').value=="") { error = 1; document.getElementById('Subject').style.backgroundColor="red";	}
	if (document.getElementById('Question').value=="") { error = 1; document.getElementById('Question').style.backgroundColor="red";}
	

	if (error)
	{
	alert("Please fill in all fields");
	}
	else
	{
		MediumWindow('','SupportFormWindow');
		document.SupportForm.submit();
	}
	
}

function ConfirmContactEmailForm()
{
	var error = 0;
	if (document.getElementById('Name').value=="") { error = 1; document.getElementById('Name').style.backgroundColor="red";	}
	if (document.getElementById('Practice').value=="") { error = 1; document.getElementById('Practice').style.backgroundColor="red";	}
	if (document.getElementById('Email').value=="") { error = 1; document.getElementById('Email').style.backgroundColor="red";	}
	if (document.getElementById('Phone').value=="") { error = 1; document.getElementById('Phone').style.backgroundColor="red";	}
	if (document.getElementById('Question').value=="") { error = 1; document.getElementById('Question').style.backgroundColor="red";	}
	

	if (error)
	{
	alert("Please fill in all fields");
	}
	else
	{
		MediumWindow('','ContactFormWindow');
		document.ContactForm.submit();
	}
}

function ConfirmContactDemoForm()
{
	var error = 0;
	/*
	if (document.getElementById('Name').value=="") { error = 1; document.getElementById('Name').style.backgroundColor="red";	}
	if (document.getElementById('Practice').value=="") { error = 1; document.getElementById('Practice').style.backgroundColor="red";	}
	if (document.getElementById('Email').value=="") { error = 1; document.getElementById('Email').style.backgroundColor="red";	}
	if (document.getElementById('Phone').value=="") { error = 1; document.getElementById('Phone').style.backgroundColor="red";	}
	if (document.getElementById('Question').value=="") { error = 1; document.getElementById('Question').style.backgroundColor="red";	}
	*/

	if (error)
	{
	alert("Please fill in all fields");
	}
	else
	{
		MediumWindow('','ContactDemoWindow');
		document.ContactDemo.submit();
	}
}
