﻿// JScript File

function oHelp(_ID)
{
        var h = (screen.availHeight - 27);
        var l = (screen.availWidth - 247);
        window.open('../help/default.aspx?id=' + _ID + '','Help','height=' + h +',width=240,left=' + l +',top=0,scrollbars=yes'); 
        window.resizeTo(screen.availWidth-248,screen.availHeight); 
        window.moveTo(1,1);
}

function toggle(id){
    var e = document.getElementById(id);
	if (e.style.display == "none"){
		e.style.display = "";
		}
	else{
		e.style.display = "none";
	}
}

function popup(key)
{
    window.open('../help/pop.aspx?key=' + key,'popup','menubar=no,scrollbars=yes,location=no,status=no,height=400,width=360,left=200,top=200')

}

function clearfield(txtBox)
{
    txtBox.innerText = '';
}

function show(el)
{
    var e = document.getElementById(el);
	if (e.style.display == "none")
		e.style.display = "";
}
function hide(el){
    var e = document.getElementById(el);
	if (e.style.display != "none")
	    e.style.display = "none";
}

