﻿function changeVisibilityOne( item )
{
  if ( document.getElementById( item ).style.display == 'none' )
  {
    document.getElementById( item ).style.display = 'inline';
  }
  else
  {
    document.getElementById( item ).style.display = 'none';
  }
}

function changeVisibility( hide, show )
{
	if ( document.getElementById( show ).style.display == 'none' )
	{
	    document.getElementById( show ).style.display = 'inline';
	}
	else
	{
		document.getElementById( show ).style.display = 'none';
	}
	
    document.getElementById( hide ).style.display = 'none';
}

function youtube( videoId )
{
	fenster = window.open('', '', 'width=640,height=505,resizable=no,scrollbars=no');
	fenster.document.write('<html><head><title>Trips\'n\'Pics sur Youtube</title></head><body style="margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px;"><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/' + videoId + '&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + videoId + '&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></body></html>');
	fenster.focus();
}

function getKeyPressed(e, table, id, field, width, newValue, onHome, cancel)
{ 
	tastenCode=e.keyCode?e.keyCode:e.which;

	if(tastenCode == 13)
	{ 
		xajax_saveTextfield(table, id, field, width, newValue, onHome, cancel);
	}
}