ImagePageStyle = '' +
'body.ShowImagePage {' +
'	font-family :  Arial;' +
'	color: Black;' +
'	text-align : center;' +
'	background : #FFE09C;' +
'	margin-left : 10px;' +
'	margin-top : 0px;' +
'	margin-right : 10px;' +
'	margin-bottom : 20px;' +
'	scrollbar-arrow-color: Black;' +
'	scrollbar-shadow-color : #FFE09C;' +
'	scrollbar-base-color : #FFE09C;' +
'	scrollbar-face-color : #FFE09C' +
'	scrollbar-highlight-color : #FFE09C;' +
'}' +

'div.ShowImagePageTitle {' +
'	font-size : 14px;' +
'    margin-left: 0px;' +
'	margin-right: 0px;' +
'	margin-top : 10px;' +
'	margin-bottom : 10px;' +
'}' +

'div.ShowImagePageImage {' +
'    margin-left: 0px;' +
'	margin-right: 0px;' +
'	margin-top : 10px;' +
'	margin-bottom : 20px;' +
'}' +

'a {' +
'	color : #AC5D2D;' + 
'}' +

'img.ShowImagePageImage {' +
'	border : 1px solid #FFAF3C;' +
'}';




function ShowImage(src) {
	wnd=window.open('','','toolbar=0,location=0,scrollbars=0,resizable=1,status=0,width=300,height=300');
	wnd.document.write('<html>');
	wnd.document.write('<head>');
//	wnd.document.write('<link rel="stylesheet" type="text/css" href="style.css"/>');
	wnd.document.write('<title>OBČANSKÉ SDRUŽENÍ NAŠE DĚTI</title>');
	wnd.document.write('<style>' + ImagePageStyle + '</style>');
	wnd.document.write('</head>');
	wnd.document.write('<body class="ShowImagePage">');
	wnd.document.write('<div class="ShowImagePageTitle">');
	wnd.document.write('Klepnutím na obrázek <a class="PreviousNextText" href="javascript:self.close()">zavřete</a> okno');
	wnd.document.write('</div>');
	wnd.document.write('<div class="ShowImagePageImage">');
	wnd.document.write('<a class="ShowImagePageImage" href="javascript:self.close()">');
	wnd.document.write('<img id="img" class="ShowImagePageImage" src="' + src + '" onload="javascript:resizeTo(img.width+100,img.height+150);resizeTo(img.width+50,img.height+90);">');
	wnd.document.write('</a>');
	wnd.document.write('</div>');
	wnd.document.write('</body>');
	wnd.document.write('</html>');
}

function CheckFrames() {
  if(window.top == window.self) {

    var script_tag = document.createElement('script');
    script_tag.type = 'text/javascript';
    script_tag.id="webcounter_netmouse_cz_referer";
    script_tag.src = 'http://webcounter.netmouse.cz/page_statistics/?uid=www_nasedeti_cz';
    document.getElementsByTagName('head')[0].appendChild(script_tag); 


    document.write('<div class="TextPageWarningText">');
    
    var referer_param = "";
    
//    if (top.document.referrer != null) {
//      referer_param = '&ref=' + escape(top.document.referrer);
//    }
    
    document.write('Stránka byla pravděpodobně otevřena z vyhledávače a její obsah proto není kompletní. Pro správné zobrazení této stránky na serveru <a target="_top" href="http://www.nasedeti.cz">www.nasedeti.cz</a> klikněte <a target="_top" href="http://www.nasedeti.cz/open_page.jsp?url=' + location + referer_param + '">sem</a>.');
    document.write('</div>');
  }
}


function CheckWindowName(window_name) {
  if(window.name != window_name) {
    document.write('<div class="TextPageWarningText">');
    document.write('Stránka byla pravděpodobně otevřena z vyhledávače. Více najdete na <a target="_top" href="http://www.nasedeti.cz">www.nasedeti.cz</a>.');
    document.write('</div>');
  }
}

function CheckMenuTopPageFrames() {
  if (window.top == window.self) {
 	window.location.href = "./" + location.search;
  }
}


function CheckIndexPageFrames() {
  if (window.top != window.self) {
 	window.top.location.href = "./" + location.search;
  }
}


function OpenSmallWindow(page_url, window_name) {
  wnd=window.open(page_url, window_name,'toolbar=0,location=0,scrollbars=0,resizable=1,status=0,width=300,height=300');
  return false;
}


function ClipBoard(object_to_copy) 
{
  Copied = object_to_copy.createTextRange();
  Copied.execCommand("Copy");
}


