function winpopup(htmlFile, strWname, wWidth,wHeight, bScroll, bReside) 
	{
	if (navigator.userAgent.substring(0,9) == "Mozilla/4") {
	res_w = screen.width;
	res_h = screen.height;
	}else 	// For netscape 3.0
	{
	res_w = 800;	// enter Screen resolution width
	res_h = 600;	// enter Screen resolution height
	}

	win_width			= (wWidth)		?	wWidth :730;
	win_height		= (wHeight)		?	wHeight :440;
	bresideBar		= (bReside)		?	"yes"	:"no";
	bscroll				= (bScroll)		?	"yes"	:"no";

	screen_x = (res_w - win_width)  /  2;
	screen_y = (res_h - win_height) /  2;

	pop = window.open(htmlFile, strWname, 'width=' + win_width + ',height=' + win_height + ',screenx=' + screen_x + ',screeny=' + screen_y + ',left=' + screen_x + ',top=' + screen_y + ',scrollbars=' + bscroll + ',resizable=' + bresideBar +',status=yes');
	pop.focus();
}

  function mailPopup(product, mail){
    winpopup("/GlobalHome/TH/products/contact/mail.jsp?nameProduct=" + product + "&mail=" + mail, "ProductMail", 550, 300, false, false);
  }