//------------------------------------------------------------------------

function setFocus(formularName, formularField)
{
	window.document.forms[formularName].elements[formularField].focus();
}

//------------------------------------------------------------------------

function openWindow(file, name, width, height, top, left, scroll, resizable)
{
	window.open(file, name, "width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",scrollbars=" + scroll + ",resizable=" + resizable + ",location=no,menubar=no,status=no,toolbar=no");
}

//------------------------------------------------------------------------

function detectIfPopUp(path)
{
	if(!opener) { window.document.location.href = path + "index.htm"; }
}

//------------------------------------------------------------------------

function checkFrameset()
{
	if(parent.frames.length == 0) { window.document.location.href="index.htm"; }
}

//-----------------------------------------------------------------------

