// CLARK HEADSTONES - GENERAL SCRIPTS


// This function opens the Terms & Condition popwindow at center of the screen
var myWindow;
function openCenteredWindow(url) {
    var width = 600;
    var height = 450;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + 
        ",status,resizable,left=" + left + ",top=" + top + 
        ",screenX=" + left + ",screenY=" + top + ",resizable=yes, status=2, scrollbars=yes";
    myWindow = window.open(url, "subWind", windowFeatures);
}


// This function sets the caption of the Login form in the Right Panel
function setCaption()
{
	if (document.frmLogin.txtUsername.value=="")
	{
		document.frmLogin.txtUsername.value="Username";
	}

	if (document.frmLogin.txtPassword.value=="")
	{
		document.frmLogin.txtPassword.value="password";
	}
}

function clearCaption(fieldName)
{
	if (fieldName=="username")
	{
		document.frmLogin.txtUsername.value="";
	}

	if (fieldName=="password")
	{
		document.frmLogin.txtPassword.value="";
	}
}