// * POPUP OPENER
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// * POPUP OPENER for products
function openBrWindow(theURL, Name, popW, popH, id, clsName) {
	var winleft = (screen.width - popW) / 2;
	var wintop = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+wintop+',scrollbars=0,resizable'
	Win = window.open(theURL+"?id="+id+"&clsName="+clsName, Name, winProp)
	if (Number(navigator.appVersion) >= 4) { 
		Win.window.focus(); 
	}
}
