function hide(elementId,height) {
	parent.document.getElementById(elementId).style.height = "16px";
}

function show(elementId,height) {
	parent.document.getElementById(elementId).style.height = height+"px";
}

function openWindow(sUrl,sName,sAttributes) {
    if(sUrl == '') {
        return false;
    }
    if(sName == '') {
        sName = 'formwindow';
    }
    if(sAttributes == '') {
        sAttributes = 'width=650,height=400,scrollbars=yes,resizable=yes';
    }
    window.open(sUrl,sName,sAttributes);
}

function setElementValue(sWindow,sFormId,sElementId,sValue) {
    oElement = eval(sWindow+'.document.'+sFormId+'.'+sElementId);
    if(oElement.type == 'select-one') {
        for(i = 0; i < oElement.options.length; i++) {
            if(oElement.options[i].value == sValue) {
                oElement.options[i].selected = true;
                break;
            }
        }
    }
    else {
        oElement.value = sValue;
    }
    window.close();
    return false;
}

function getResolution()
{
	if(screen.width < 1024) reklama.style.display = 'none';
}

