
	// script for filling goods-basket
	// mod = table
	// tbl_type = shop
	
	function fill (PAGE_ID, TBL_ID, TD_ID) {
		
		var quantity = document.getElementById('qua' + TD_ID).value;
		
		document.location.href = 'index.php?page_id=' + PAGE_ID + '&action=filltd&tbl_id=' + TBL_ID + '&td_id=' + TD_ID + '&quantity=' + quantity;
	
	}
	
	function del (PAGE_ID, TBL_ID, TD_ID) {
			
		var quantity = document.getElementById('qua' + TD_ID).value;
		
		document.location.href = 'index.php?page_id=' + PAGE_ID + '&action=deltd&tbl_id=' + TBL_ID + '&td_id=' + TD_ID + '&quantity=' + quantity;
	
	}
	
	function cookie_save() {
		
		if (!document.tbl_order)
			return;
		
		var FORM	 = document.tbl_order;
		
		for (var num = 0; num < FORM.length; num++)
			document.cookie = FORM[num].name + "=" + FORM[num].value + ";";
		
	}
	
	function cookie_load() {
		
  	var COOKIE = document.cookie.split(";");
  	
  	for (var cn = 0; cn < COOKIE.length; cn++) {

  		var TEMP 				= COOKIE[cn].split("=");
  		var TEMP_COOKIE = TEMP[0].replace(/ /, "");
  		
  		if (document.getElementById(TEMP_COOKIE) && TEMP[1] && document.getElementById(TEMP_COOKIE).type != 'hidden')
  			eval('document.tbl_order.' + TEMP_COOKIE + '.value = "' + TEMP[1] + '";');
  	
  	}
  }
	
	function browse(DIRECTION) {
		
		document.browse_form.action.value = 'browse' + DIRECTION + 'td';
		document.browse_form.submit();
		
	}
	
	function browse_link(UP, DOWN) {
	
		document.getElementById('bup').style.display 		= (UP == 1) ? 'inline' : 'none' ;
		document.getElementById('bdown').style.display 	= (DOWN == 1) ? 'inline' : 'none' ;
		
	}
	
  function change_picture(NUMBER, STATUS, LANGUAGE) {
		
    if(LANGUAGE == undefined)
    	LANGUAGE = '';
    document.getElementById('produktprogramm').src= './filefactory/content/pictures/rechts_klicken' + NUMBER + LANGUAGE + '.gif';
  
  }   

  function open_close(NODE_ID,DEPTH) {

  	document.product_view.node.value = NODE_ID;
    document.product_view.depth.value = DEPTH;
    document.product_view.activity.value = 'browse';
    document.product_view.submit();

  }

  function show_search_group(GROUP_ID) {

  	document.product_view.node.value = GROUP_ID;
    document.product_view.depth.value = '';
    document.product_view.activity.value = 'show_group';
    document.product_view.submit();

  }

  function Farbe(num) {

    var elements = $$('div.news_headline');

		var color = new Array(
			"284F94", "324C8D",
			"444782",	"554177",
			"633E6E", "793660",
			"833459", "942F4F",
			"A12B46", "B62539",
			"C5202F", "CF1D28",
			"D61B24", "CF1D28",
      "C5202F", "B62539",
      "A12B46", "942F4F",
      "833459", "793660",
      "633E6E", "554177",
      "444782", "324C8D"
		);

    for(c = 0; c < elements.length; c++) {
      elements[c].style.color =  "#" + color[num];
    }

		num++;
		if(num > 23)
			num = 0;

		window.setTimeout("Farbe(" + num + ")", 200);


  }

