/*
	ICEMAN Europe Ltd. / www.iceman.co.uk / StyleSheet (CSS)
	Programovanie:Gabriel Schwardy / Caleydon Media / www.caleydon.com
	File name: funkcie.js
*/

// FORMULAR: Vyhladavanie / vymaze text vo formulari
function searching(elm) {
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else 
	if (elm.value == "") elm.value = "Site search";
}

// FORMULAR: Newsletter / vymaze text vo formulari
function newsletter(elm) {
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "@";
	else 
	if (elm.value == "") elm.value = "Your e-mail address";
}

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

/* End JavaScript */
