			function rollCell(id) {
				cell=document.getElementById(id);
				cell.style.background="#E4E4E4";
				cell.style.borderWidth="0px 0px 3px 0px";
				cell.style.borderColor="#FCC81C";
				cell.style.borderStyle="solid";
				cell.style.color="#000";
			}

			function rollOutCell(id) {
				cell=document.getElementById(id);
				cell.style.background="#F2F2F2";
				cell.style.borderWidth="0px 0px 3px 0px";
				cell.style.borderColor="#F2F2F2";
				cell.style.borderStyle="solid";
				cell.style.color="#666666";
			}

function showThis(tabId) {


		opciostartalom 	= eval("document.getElementById('opciok').style");
		muszakitartalom = eval("document.getElementById('muszaki').style");

		stat = tabId;
			if ( tabId == "opciok" ){
					opciostartalom.display = "";
					muszakitartalom.display = "none";
					document.getElementById('opciokTab').className='current';
					document.getElementById('muszakiTab').className='';
			}

		if ( tabId == "muszaki" ) {
				opciostartalom.display = "none";
				muszakitartalom.display = "";
				document.getElementById('opciokTab').className='';
				document.getElementById('muszakiTab').className='current';
		}

}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=400');");
}

function chk(){
		reqs=['cegnev','kapcsolattarto','adoszam','cegjegyszam','szekhely','telephely','levelcim','veztelefon','mobil','mail'];
		valid=true;
		for(var i=0;i<reqs.length;i++){
			if(document.form[reqs[i]].value.length<1){
				valid=false;

				break;
			}
		}
		if(document.form[reqs[9]].value.indexOf("@")==-1 || document.form[reqs[9]].value.indexOf(".")==-1){valid=false;}
		if(!valid){alert('A csillaggal jelölt mezők kitöltése kötelező!');}

		return valid;
		//return false;
	}