	var active = 0;
	var dropping;
    var switcher;

		function dev(div)
			{
			document.getElementById(div).style.display = '';
			}

		function rma(lang)
			{
			window.open('/contents/rma.php?l='+lang,'rma','width=400,height=400,statusbar=1')
			}
		
		function show(div)
			{
			document.getElementById('computers').style.display = 'none';
			document.getElementById('videogames').style.display = 'none';

			document.getElementById(div).style.display = 'block';

			clearTimeout(dropping);
			}

		function drop(div)
			{
			active = 0;
			document.getElementById(div).style.display = 'none';
			}

		function hide(div)
			{
			dropped = div;
			dropping = setTimeout('drop(dropped)',500);
			}

		function cleared()
			{
			clearTimeout(dropping);
			}
			
		function showproduct(code)
			{
			window.open('/contents/show.php?code='+code,'show','width=450,height=450');
			}
      

		function update()	{
			updateint = setInterval("recall()",1000);
			}

		function recall() {
			leurreid = eval("document.getElementById('leurre').style");
			leurreid.visibility = (leurreid.visibility == 'visible') ? 'hidden' : 'visible';
			}

