function product_over(target){
var inc=0;
var msg="ID:";
var z_index = 10000;
var alltags=document.all? document.all : document.getElementsByTagName("*")
	for (i=0; i<alltags.length; i++){
		if (alltags[i].className=="product_menu" || alltags[i].className=="tm"){
			alltags[i].style.visibility="hidden";
			msg=msg+alltags[i].id+":"+alltags[i].style.visibility+"\n";
			if (alltags[i].id == target){ 
				alltags[i].style.visibility="visible";
				alltags[i].style.zIndex = z_index;
			}
		}
		
	}
}
function product_click(target){
	window.location.href = target;
}

function openNewWindow(target) {
  popupWin = window.open(target,
  'open_window',
  'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0')
}
