function openPopup(url,name,width,height) {
	var popupWin = top[name];
	if (popupWin != null && typeof(popupWin) == 'object' && !popupWin.closed) {
		if (popupWin.document.location.href != url) {
			popupWin.document.location.href = url;
		}
	} else {
		popupWin = window.open(url, name, 'width=' + width + ',height=' + height + 'status=yes,menubar=yes,resizable=yes,scrollbars=yes, left=' + String((screen.width-width)/2) + ',top=' + String((screen.height-height)/2));
	}
	popupWin.focus();
}

function closePopup(url) {
	if (opener) {
		if (opener.closed) window.open(url, "");
		self.close();
		return false;
	}
	return true;
}

function wopen(url,w,h){
	opened = window.open("","none","top=100,left=100,width="+w+",height="+h+",resizable=0,scrollbars=0,menubar=0");
	opened.document.open();
	opened.document.write('<html>\n');
	opened.document.write('<head></head>\n');
	opened.document.write('<body style="margin:0; padding:0;">\n');
	opened.document.write('<img src="'+url+'">\n');
	opened.document.write('</body>\n');
	opened.document.write('</html>');
	opened.document.close();
}

function wopen2(url,name,w,h){
	window.open(url,name,"top=100,left=100,width="+w+",height="+h+",status=yes,menubar=yes,resizable=yes,scrollbars=yes");
}

function check_fill(obj){
	var felem = document.forms[obj];

	if (felem.no_exp.checked == 1){
		felem.exp_start.disabled = 1;
		felem.exp_start.style.backgroundColor = '#eceae6';
		felem.exp_end.disabled = 1;
		felem.exp_end.style.backgroundColor = '#eceae6';
		felem.org.disabled = 1;
		felem.org.style.backgroundColor = '#eceae6';
		felem.dol.disabled = 1;
		felem.dol.style.backgroundColor = '#eceae6';
		felem.func.disabled = 1;
		felem.func.style.backgroundColor = '#eceae6';
		felem.money.disabled = 1;
		felem.money.style.backgroundColor = '#eceae6';
		felem.reasons.disabled = 1;
		felem.reasons.style.backgroundColor = '#eceae6';
		felem.kvalif.disabled = 1;
		felem.kvalif.style.backgroundColor = '#eceae6';
		felem.nrav.disabled = 1;
		felem.nrav.style.backgroundColor = '#eceae6';
		felem.nenrav.disabled = 1;
		felem.nenrav.style.backgroundColor = '#eceae6';
	}
	else{
		felem.exp_start.disabled = 0;
		felem.exp_start.style.backgroundColor = '#fff';
		felem.exp_end.disabled = 0;
		felem.exp_end.style.backgroundColor = '#fff';
		felem.org.disabled = 0;
		felem.org.style.backgroundColor = '#fff';
		felem.dol.disabled = 0;
		felem.dol.style.backgroundColor = '#fff';
		felem.func.disabled = 0;
		felem.func.style.backgroundColor = '#fff';
		felem.money.disabled = 0;
		felem.money.style.backgroundColor = '#fff';
		felem.reasons.disabled = 0;
		felem.reasons.style.backgroundColor = '#fff';
		felem.kvalif.disabled = 0;
		felem.kvalif.style.backgroundColor = '#fff';
		felem.nrav.disabled = 0;
		felem.nrav.style.backgroundColor = '#fff';
		felem.nenrav.disabled = 0;
		felem.nenrav.style.backgroundColor = '#fff';
	}
	/*
	if (document.forms[0].no_exp.checked == 1) {alert('Yes'); document.forms[0].exp_start.disabled = 1;}
	else document.forms[0].exp_start.disabled = 0;
	*/
}
