// JavaScript Document

	function mw_over(imgId,imgFle){

		document.getElementById(imgId).src = 'images/' + imgFle + '_over.gif';

	}

	function mw_out(imgId,imgFle){

		document.getElementById(imgId).src = 'images/' + imgFle;

	}

	function calc(){

		window.open('calcu.htm','','menubar=0,width=390,height=230,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0');

	}

	function chOrder(o_id){

		if(document.getElementById('cksel_' + o_id).value == 0){

			document.getElementById('id_' + o_id).src = 'images/sel_' + o_id + '.gif';
			document.getElementById('td_' + o_id).style.backgroundColor = '#ededed';
			document.getElementById('prcCon_' + o_id).style.backgroundColor = '#ededed';
			document.getElementById('tr_' + o_id).style.cursor = 'pointer';

		}
		else{

			document.getElementById('tr_' + o_id).style.cursor = 'default';

		}

	}

	function ouOrder(o_id){

		if(document.getElementById('cksel_' + o_id).value == 0){

			document.getElementById('id_' + o_id).src = 'images/dis_' + o_id + '.gif';
			document.getElementById('td_' + o_id).style.backgroundColor = '#f1f1f1';
			document.getElementById('prcCon_' + o_id).style.backgroundColor = '#f1f1f1';

		}

	}

	function dnOrder(o_id){

			document.location.href = 'cart1.php?prodId=' + o_id + '&act=add&language=french';

	}

	function dnOrderPage(fle,afid){

			document.location.href = fle + '.php?' + afid;

	}
	
