<!--

function openPopup(co,name,x,y)
 {
    if(!name){name='nowe'};
    if(!x){x=570};
    if(!y){y=520};
    config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+x+',height='+y+',scrollbars=no,resizable=no';
    window.open(co,name,config);
 }

function openImage(img,title,windowName,x,y)
 {
    var wp;
    config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+x+',height='+y+',scrollbars=no,resizable=no';
	content='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>'+title+'</title></head><body style="margin:0px;"><img src="'+img+'" alt="'+title+'" onclick="window.close();" /></body></html>';
		
	wp=window.open('',windowName,config);
	wp.document.open();
	wp.document.write(content);
	wp.document.close(); 
	wp.focus();
 }

 function displayIMG(img,title)
 {
	document.getElementById("displayPanel").innerHTML='<img src="'+img+'" alt="'+title+'" width="359" height="285" />';
 }
 
  function displayIMG2(id)
 {
	document.getElementById("displayPanel").innerHTML='<img src="'+currentGalleryImages[id]+'" alt="img" width="359" height="285" />';
	var tmp='<table>';
	
		if(id>1) 
			tmp+='<tr><td><img src="data/images/perviousPicture.jpg" alt="pervious" onclick="displayIMG2('+eval(Number(id)-1)+');" /></td></tr>';
			
		if(id<(currentGalleryImages.length-1)) 
			tmp+='<tr><td><img src="data/images/nextPicture.jpg" alt="next" onclick="displayIMG2('+eval(Number(id)+1)+');" /></td></tr>';
	
	tmp+='</td></tr></table>';
	
	document.getElementById("buttonsPanel").innerHTML=tmp;
 }
 
 function displayVEOH(id)
 {
	document.getElementById("displayPanel").innerHTML='<embed src="http://www.veoh.com/videodetails2.swf?permalinkId='+id+'&id=anonymous&player=videodetailsembedded&videoAutoPlay=1" allowFullScreen="true" width="359" height="285" bgcolor="#000000" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
 }
 
  function displayVIMEO(id)
 {
	document.getElementById("displayPanel").innerHTML='<object width="359" height="285"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?autoplay=1&clip_id='+id+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=c9af61&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?autoplay=1&clip_id='+id+'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=c9af61&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="359" height="285"></embed></object>';
 }
 
  function displayMusicPalyer(track,name)
 {
	document.getElementById("displayPanel").innerHTML='<object type="application/x-shockwave-flash" data="data/revolt.swf" id="audioplayer2" height="230" width="270"><param name="movie" value="data/revolt.swf"><param name="quality" value="high"><param name="menu" value="false"><param name="wmode" value="transparent"></object><object type="application/x-shockwave-flash" data="data/player.swf" id="audioplayer1" height="50" width="290"><param name="movie" value="data/player.swf"><param name="FlashVars" value="playerID=1&amp;soundFile='+track+'&amp;name='+name+'"><param name="quality" value="high"><param name="menu" value="false"><param name="wmode" value="transparent"></object>';
 }
//-->