var pom = new Array("jméno","web","email","vzkaz","kód");
function fn(id)
{
	if (document.getElementById(id).value==id)
		document.getElementById(id).value="";
	for($i=0;$i<5;$i++)
	{
		if(id!=pom[$i])
		{
			if (document.getElementById(pom[$i]).value=="")
				document.getElementById(pom[$i]).value=pom[$i];
		}
	}
}
function Smile(what)
{
  document.getElementById("vzkaz").value=document.getElementById("vzkaz").value+what;
}
function openw(url)
{
	window.open(url, 'nove_okno', ' width=1000, height=900, top=0, left=0, scrollbars=yes');
}
