// JavaScript Document
													function fixOpenChild(parentId, childId)
													{
															oChild = document.getElementById(childId)

															if (oChild && (!oChild.style || oChild.style.display == 'none'))
															{
																	oChild.style.display = 'block'
															}
															else
															{
																	oChild.style.display = 'none'
															}
													}

														function openW() {
														    var width = 790;
															var height = 580;
															var left = parseInt((screen.availWidth/2) - (width/2));
															var top = parseInt((screen.availHeight/2) - (height/2));
															var windowFeatures = 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + 'screenX=' + left + ',screenY=' + top + ',scrollbars=yes';
															var new_window=window.open('dolina.php', 'subwindow', windowFeatures);
													    	new_window.focus();
														}
