// JavaScript Document
function ClearSearch()
{
if (document.getElementById('searchWindow').value == 'Szukaj w serwisie')
	{
	document.getElementById('searchWindow').value = '';
	}
}
function ClearMsg()
{
if (document.getElementById('msg').value == 'Twoja wiadomość')
	{
	document.getElementById('msg').value = '';
	}
}
function ClearName()
{
if (document.getElementById('name').value == 'Imię i nazwisko')
	{
	document.getElementById('name').value = '';
	}
}
function ClearMail()
{
if (document.getElementById('email').value == 'Adres e-mail')
	{
	document.getElementById('email').value = '';
	}
}
function sendAskForm() {
	if ((document.askform.name.value == "") || (document.askform.name.value == "Imię i nazwisko")) {
		alert("Proszę podać imie oraz nazwisko.");
		document.askform.name.focus();
		return false;
	}
	if ((document.askform.email.value == "") || (document.askform.email.value == "Adres e-mail")) {
		alert("Proszę podać adres email.");
		document.askform.email.focus();
		return false;
	}
	if ((document.askform.msg.value == "") || (document.askform.msg.value == "Twoja wiadomość")) {
		alert("Proszę podać treść wiadomości.");
		document.askform.msg.focus();
		return false;
	}
	return true;
}

function addbookmark() {
	bookmarkurl="http://www.interlogo.pl";
	bookmarktitle="Kontenery Interlogo";
	if (document.all) { window.external.AddFavorite(bookmarkurl,bookmarktitle); }
}
