﻿/* 400px x 200px pop up function */
function Popup400(url) {
	newwindow=window.open(url,'name','height=200,width=400');
	if (window.focus) {newwindow.focus()};
	return false;
}

/* text box text hint function */
function WaterMarkFocus(txt, text) 
{
    if (txt.value == text) 
    {
        txt.value = "";
        txt.style.color = "#1b558e";
    }
}

function WaterMarkBlur(txt, text) 
{
    if (txt.value == "") 
    {
        txt.value = text;
        txt.style.color = "#1b558e";
    }
}
