function showImage(url,w,h){

	wasOpen  = false;
  if ( (0<w) && (0<h) )
  {
	  win = window.open('', '', 'left='+(screen.width/2-70)+', top='+(screen.height/2-60)+', width=190, height=100, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	}
	else
	{
    win = window.open(url);
  }

  win.focus();

  win.document.write('<html style="padding: 0; maring: 0;"><head><META http-equiv="cache-control" content="no-cache" /><META http-equiv="pragma" content="no-cache" /></head><body style="padding: 0; maring: 0; background: #fff;"><div style="text-align: center; padding: 30px 0;" id="loading"><img src="img/loading.gif" width="98" height="13" alt="" /></div><img id="photo" style="position: absolute; left: 0; top: 0; visibility: hidden;" onclick="window.close();" onload="this.style.visibility=\'visible\'; window.moveTo(screen.width/2-(document.images.photo.width+30)/2, screen.height/2-(document.images.photo.height+60)/2); window.resizeTo((document.getElementById(\'photo\').offsetWidth), (document.getElementById(\'photo\').offsetHeight+45)); window.moveTo(screen.width/2-(document.images.photo.width+10)/2, screen.height/2-(document.images.photo.height+60)/2);" name="photo" src="'+url+'" alt="" /></body></html>');
  
  return (typeof(win)=='object')?true:false;


} 


function windowUp(url,w,h){

	wasOpen  = false;
  if ( (0<w) && (0<h) )
  {
	 win = window.open(url,'detail','left='+(screen.width/2-w/2)+', top='+(screen.height/2-h/2)+', width='+w+',height='+h+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	}
	else
	{
    win = window.open(url);
  }
	win.focus();
  return (typeof(win)=='object')?true:false;

} 

function pageLoaded()
{
//  alert('a');
  document.getElementById('page').style.visibility='visible';
  document.getElementById('all').style.background='#00509F url( "../img/body-pozadi.jpg" ) repeat-y';
  document.getElementById('all').style.height='auto';
  document.getElementById('all').style.overflow='visible';  
}
