/*
	Space4u / www.space4u.sk  /  JavaScript
	Programovanie: Gabriel Schwardy, Ing. / Caleydon Media / www.caleydon.com
	Nazov suboru: js_funkcie
*/

// Popup okno - Vseobecne podmienky
function podmienky(url) {
newwindow=window.open(url,'schranka','height=450,width=600,top=50,left=50,scrollbars=yes,resizable=yes,status=yes');
	if (window.focus) {newwindow.focus()}
	return false; }

// Popup okno - E-mail
function email(url) {
newwindow=window.open(url,'email','width=700,height=650,top=100,left=200,scrollbars=yes,resizable=yes,status=yes');
	if (window.focus) {newwindow.focus()}
	return false; }

// Formular - Vyhladavanie - automaticky vymaze/nahradi text vo formulari
function hladaj(elm) {
	if ( ! elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else
	if (elm.value == "") elm.value = "Vyhľadávanie..."; }

// Formular - E-mail spravodaj - automaticky vymaze/nahradi text vo formulari
function mailing(elm) {
	if ( ! elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "@";
	else
	if (elm.value == "") elm.value = "Zadaj e-mailovú adresu"; }

// Formular - Otvorit / zatvorit
function komentar_formular()
{
	if (document.getElementById('odpoved').style.display == "block")	{
		document.getElementById('odpoved').style.display = "none";
	} else {
		document.getElementById('odpoved').style.display = "block";
	}
}

/* Koniec JavaScript */