
function jsDeleteConfirm(url)
{
	if (confirm('Naozaj zmazať?'))
	{
		location.replace(url);
	}
	return;
}
function clearElementContent(elementname,value){
	var el = document.getElementById(elementname);
	if (el.value == value){
		el.value = '';
	}
}

function changeElementType(elementname, elementtype){
	var el = document.getElementById(elementname);
	el.type = elementtype;
}

function jsDeleteVideo(url){
	//alert(document.getElementById('cid').value);
	//alert(url);
	if (confirm('Naozaj zmazať?')){
		location.replace(url + '&cid=' + document.getElementById('cid').value);
	}
	return;
}

function jsToggle(x)
{
	if (document.getElementById(x).style.display == "none")
		(document.getElementById(x).style.display = "block")
	else
		(document.getElementById(x).style.display = "none")
}
function jsSendPost(){
	document.getElementById('gForm').submit();
}

function jsShowPhoto(path, width, height){
	window.open(path,'photoWindow', 'width=' + width +',height=' + height +',resizable=yes,scrollbars=yes,location=no,status=no,toolbar=no,menubar=no');
	return;
}