function jswProductPictures(productId,productName){
	window.open ("wnd_catalog_product_pictures.php?id="+productId+"&name="+productName,"blank","width=680,height=400,directories=no,location=no,menubar=no,status=no,toolbar=no,alwaysRaised=yes,alwaysLowered=no,scrollbars=no,resizable=no");
}

function jswProduct3D(url3D){
	window.open ("wnd_catalog_product_3d.php?url="+url3D,"blank","width=500,height=375,directories=no,location=no,menubar=no,status=no,toolbar=no,alwaysRaised=yes,alwaysLowered=no,scrollbars=no,resizable=no");
}

function focusParent() {
  		parent.window.opener.focus();
  		self.close();
}

//AJAX
function newAjaxCatalog() { 
	var xmlhttp=false; 
	try 
	{ 
		xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); //navegadores no IE
	}
	catch(e)
	{ 
		try
		{ 
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); //para IE
		} 
		catch(E) { xmlhttp=false; }
	}
	if (!xmlhttp && typeof XMLHttpRequest!="undefined") { xmlhttp=new XMLHttpRequest(); } 

	return xmlhttp; 
}

function showImage(divName,pathImage, pathImageBig) {
	var divMensaje=document.getElementById(divName); //se obviene el nombre del div por el id
	var image=pathImage;
	var imageBig=pathImageBig;
	divMensaje.innerHTML='<a href="'+imageBig+'" target="_blank"><img src="'+image+'" width="468" height="278" border="0"></a>';
}