function showSub(id){
	if(document.getElementById('sub_'+id)){
		if(document.getElementById('sub_'+id).getElementsByTagName('div')[0]){
			document.getElementById('sub_'+id).style.display = (document.getElementById('sub_'+id).style.display == 'block') ? 'none' : 'block';
			return false;
		}
	}
	return true;
}
window.onload = winLoad;
function winLoad(){
document.getElementById('mailas').href = 'mail'+'to'+':'+'info'+'@'+'infolaukas'+'.'+'lt';
StartClock24();
}
function add_file(){
	var newNode = document.createElement('input');
	var newBr = document.createElement('br');
	newNode.name = 'files[]';
	newNode.type = 'file';
	
	document.getElementById('files').appendChild(newNode);
	document.getElementById('files').appendChild(newBr);
	}