$(document).ready(function (){
	$(".nuevaventana").click(function (){
		window.open($(this).attr('href'),$(this).attr('href'));
		return (false);
	});

	$('body').addClass($.browser.webkit?'webkit':'');
});