
function setCookie(name, value, expires, path, domain, secure) {
  document.cookie= name + "=" + escape(value) +
    ((expires) ? "; expires=" + expires.toGMTString() : "") +
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    ((secure) ? "; secure" : "");
}

//============================================================================

function check() {
	if(document.new_post.captcha.value==0) {
		alert('Ieraksti taču kodu!');
		document.new_post.captcha.focus();
		return false;
	}
}

function embed_news() {

	var container = document.getElementById('container');
	var contents = container.innerHTML;

	container.innerHTML = contents+'<div id="news_block" onClick="remove_news()"><iframe id="news_frame" src="http://udensturisms.lv/h2o/#Amata"></iframe></div>';
}

function remove_news() {
	document.getElementById("container").removeChild(document.getElementById("news_block"));
}

document.onkeypress = function(e){

	var evtobj=window.event? event : e;
	var unicode=evtobj.charCode? evtobj.charCode : evtobj.keyCode;

	if (unicode==27) remove_news();
};

//============================================================================

function new_captcha() {
	thesrc = document.getElementById('captcha').src;
	thesrc = thesrc.substring(0,thesrc.lastIndexOf('.')+4);
	document.getElementById('captcha').src = thesrc+'?'+Math.round(Math.random()*100000);
	document.new_post.captcha.focus();
}

var player_config = {
	clip: {
		autoPlay: false,
		autoBuffering: false,
		baseUrl: 'http://www.udensturisms.lv/'
	},
	canvas: {backgroundColor: "#000000"},
	plugins: {
		controls: {
			sliderGradient: 'none',
			timeColor: '#97CE65',
			buttonOverColor: '#728B94',
			volumeSliderColor: '#000000',
			bufferGradient: 'none',
			borderRadius: '0',
			timeBorder: '1px solid rgb(151, 206, 101)',
			autoHide: 'never',
			durationColor: '#ffffff',
			sliderColor: '#000000',
			bufferColor: '#00A5CA',
			tooltipColor: '#90C461',
			progressColor: '#112233',
			progressGradient: 'none',
			volumeSliderGradient: 'none',
			timeBgColor: '#555555',
			backgroundGradient: 'none',
			tooltipTextColor: '#000000',
			buttonColor: '#ACEFB5',
			backgroundColor: '#222222',
			height: 20,
			opacity: 1.0
		}
	}
};

window.onload = function() {
	$f("player", "flowplayer-3.2.5.swf",player_config);
}


