GYC = {
				pop : function() {
					$('div.fotoproducto a').click(function() {
						var w = window.open($(this).attr('href'), 'Ampliación', 'width=620,height=680'); 
						if (!w) return true; 
						w.focus(); 
						return w.closed; 
					});
				},
				cerrar : function() {
					$('h1 a').click(function() {
						var w = window.close(); 
					});
				},
				pdf : function() {
					$('div.fichaproducto p a').click(function() {
						var w = window.open($(this).attr('href'), 'PDF', ''); 
						if (!w) return true; 
						w.focus(); 
						return w.closed; 
					});
				}

}



$(document).ready(GYC.pop);
$(document).ready(GYC.cerrar);
$(document).ready(GYC.pdf);

