function go_to(element) {
	id = element[element.selectedIndex].value;
	if( parseInt(id) > 0 ) {
		window.location = "products.php?id=" + id;
	}
}

var owindow;
function popup_win(url,w,h,scroll)
{

	h+=100;
	w+=10;
	var size = ",width="+w+", height="+h;
	owindow = window.open (url,"Label","toolbar=no,location=no,directories=no,status=no,scrollbars="+scroll+",resizable=no,copyhistory=no" + size);
	owindow.focus();
}

function noSpam(user,domain) {
  locationstring = "mailto:" + user + "@" + domain + " ";
  window.location = locationstring;
}

