
// Function to delete a listing from the database
function delete_item(id) {
	string = "Are you sure you want to delete this product?";
	if (window.confirm(string)) {
		idstring = "http://www.ecobabyz.com/control/deleteproduct.php?id="+id;
		window.location.href=idstring;		
	}
}

function bakeCookie(n,v) {
	document.cookie=n+"="+v+"; expires=Monday, 04-Apr-2110 05:00:00 GMT;";
    window.location.href=window.location.href
//	history.go(0);
}
// JavaScript Document
function show(id) {
  var d = document.getElementById(id);
      for (var i = 0; i<=25; i++) {
          if (document.getElementById('product'+i)) {document.getElementById('product'+i).style.display='none';}
      }
  if (d) {d.style.display='block';}
}
// JavaScript Document
function show_2(id) {
  var d = document.getElementById(id);
      for (var i = 0; i<=25; i++) {
          if (document.getElementById('product2'+i)) {document.getElementById('product2'+i).style.display='none';}
      }
  if (d) {d.style.display='block';}
}

// This function will return a XMLHttp connection
function get_xmlHttp () {
  var xmlHttp;
  try { // Firefox, Opera 8.0+, Safari   
		xmlHttp=new XMLHttpRequest(); }
  catch (e) { // Internet Explorer    
	try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
    catch (e) {
		try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
    catch (e) { 
		alert("Your browser does not support AJAX!");
		return false;  
	}}}
	return xmlHttp;
}
