// Display the help window
function helpwindow(helpkey, popup_title) 
{
	window.open ('checking_selector_tool/help.cfm','Help','height=280,width=380');
}

// Get object
function getobject(name)
{
	if (document.getElementById)
	{
		return document.getElementById(name);
	}
	else if (document.all)
	{
		return document.all[name];
	}
	else if (document.layers)
	{
		return document.layers[name];
	}
}

// Set focus
function setfocus(name)
{
	obj = getobject(name);
	obj.focus();
}		
		
// Submit form
function submitform(name)
{
	obj = getobject(name);
	obj.submit();
}
