function change_bg(lekel, kel_color)
	{
	document.getElementById(lekel).bgColor = kel_color;
	}

function change_img(lakel, par_lakel)
	{
	document.getElementById(lakel).src = par_lakel;
	}

function affich_popup(lakel)
	{
	document.getElementById('div_popup').style.visibility = 'visible';
	document.getElementById('frame_popup').style.visibility = 'visible';
	document.getElementById('frame_popup').src = 'index.php?action=gen_page&idx='+lakel;
	}

function close_popup()
	{
	parent.document.getElementById("div_popup").style.visibility = 'hidden';
	parent.document.getElementById("frame_popup").style.visibility = 'hidden';
	parent.document.getElementById('frame_popup').src = '';
	}

function wopen(paze,w,h)
	{
	window.open(paze,"windowname","toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=no,dependent,width="+w+",height="+h);
	}

function embed(paze,w,h,flashvars,wmode)
	{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'">');
	document.write('<param name="movie" value="'+paze+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="'+wmode+'">');
	document.write('<param name="FlashVars" value="'+flashvars+'">');
	document.write('<embed src="'+paze+'" quality="high" wmode="'+wmode+'" FlashVars="'+flashvars+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed></object>');
	}