function show_row(element)
{
	//if (id==undefined) id='row';

	what = element;

		if (document.getElementById(what).style.display=='block')
		document.getElementById(what).style.display='none';
		else document.getElementById(what).style.display='block';


}

function confirmSubmit(txt)
{
	if (!txt) txt = "Are you sure?";
	var agree=confirm(txt);
	if (agree)
	return true ;
	else
	return false ;
}
function new_window(pict,name,width,height) {
	b=new_window.arguments;
	title = "easterneuropeans.co.uk ";
	msgWindow=window.open("","displayWindow","menubar=no,scrollbars=yes,width="+b[2]+",height="+b[3]+",top=130,left=30")
	msgWindow.document.write("<html><head><title>"+title+""+name+"</title><style>body {margin: 0px 0px 0px 0px;padding: 0px 0px 0px 0px;background-color:white;}</style></head>")
	msgWindow.document.write("<body oncontextmenu='return false'>><a href=javascript:window.close();><img src="+b[0]+" alt=\"Zatvor okno\" title=\"Zatvor okno\" border=0></a>")
	msgWindow.document.write("</body></html>")
}

var message="You can not right click here"; // Your no right click message here
var closeWin="0"; // Do you want to close window after message (1 for yes 0 for no)

// JavaScript by Dave Lauderdale
// Published at: www.digi-dl.com

function IE(e) 
{
     if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
     {
          alert(message); if(closeWin=="1") self.close();
          return false;
     }
}
function NS(e) 
{
     if (document.layers || (document.getElementById && !document.all))
     {
          if (e.which==2 || e.which==3)
          {
               alert(message); if(closeWin=="1") self.close();
               return false;
          }
     }
}

function set_title (text) {
document.title = text;
}
