// JavaScript Document

function Flash(width,height,path,div_id)
{

  	var flash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'">';
	flash += '<param name="movie" value="'+path+'" />';
	flash += '<param name="quality" value="high" />';
	flash += '<param name="bgcolor" value="#292a2b" />';
	flash += '<param name="menu" value="false" />';
	flash += '<embed src="'+path+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
	flash += '</object>';
	
	
	document.getElementById(div_id).innerHTML = flash;
}

function display(id, action)
{
       if (action=="hide")
       {
            document.getElementById(id).style.display = "none";
       }
       else
       {
            document.getElementById(id).style.display = "block";
       }
}

function displayWindow(url, width, height)
{
       var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,status=no,directories=no,resizable=no' );
}

function ok(link)
{
       var message = "\nCzy na pewno chcesz usun±æ element?\n";
       if (confirm(message) == true)
       {
	   return(true);
       }
       else
       {
	   return(false);
       }
}
