function GetInstructionsPage(userType)
	{
	if(userType == "admin")
		window.open("support/administrator/index.php","Help","status=1,toolbar=0,scrollbars=1,width=600px,height=800px")
	else
		window.open("support/user/index.php","Help","status=1,toolbar=0,scrollbars=1,width=600px,height=800px")
	}
function validate_support()
	{
	var id = document.getElementById("login").value;
	var name = document.getElementById("personName").value;
	var email = document.getElementById("email").value;
	var content = document.getElementById("message").value;
	if(name.length <= 0)
		{
		alert("Please enter in your name");
		document.getElementById("personName").focus();
		return false;		
		}
	else if(id.length <= 2)
		{
		alert("Please enter in your Login Id");
		document.getElementById("login").focus();
		return false;
		}
	else if(email.length <= 3)
		{
		alert("Please enter in your email");
		document.getElementById("email").focus();
		return false;
		}
	else if(content.length == 0)
		{
		alert("Please enter in your question");
		document.getElementById("email").focus();
		return false;
		}
	else
		return true;
	}
function FileHover(div)
	{
	div.style.cursor = "pointer";
	div.style.backgroundColor = "#F0F8FF";
	}
function FileOff(div)
	{
	div.style.backgroundColor = "transparent";
	}
function ButtonHover(img)
	{
	img.style.cursor = "pointer";
	img.style.backgroundColor = "#A79AFE";	
	}
function ButtonOff(img)
	{
	img.style.backgroundColor = "transparent";		
	}