var visProdLayer = null;
var layerproduct = 'layerproduct';
function showProduct(n) {
	if (!loaded) return;

	if (visProdLayer != null)
		MM_showHideLayers(layerproduct + visProdLayer, '', 'hide');
	
	visProdLayer = n;
	MM_showHideLayers(layerproduct + visProdLayer, '', 'show');
}
function popup (URL, h, w, windowName) {
	var putItThere = null; 
	var chasm = screen.availWidth;
	var mount = screen.availHeight;
	var ie = /msie/i;

	var features =
		'width=' + w + 
		',height=' + h + 
		',left=' + ((chasm - w - 10) * .5) + 
		',top=' + ((mount - h - 150) * .5) + 
		',directories=no' +
		',location=no' +
		',menubar=no' +
		',scrollbars=no' +
		',status=no' +
		',toolbar=no' +
		',resizable=no';
	
	if (!new_window) 
	{
		var new_window = window.open (URL, windowName, features);
		if (new_window) new_window.focus();
	}
}