function axome_flash2(swf,l,h,remplace)
{
	var t = '<param name="wmode" value="transparent" />';
	document.write('<object type="application/x-shockwave-flash" data="'+ swf +'" width="'+ l +'" height="'+ h +'"><param name="movie" value="'+ swf +'" />'+ t + remplace +'</object>');
}

$(function (){  
	if( $('table#prod_list').length )
	{
		$('table#prod_list tr td').each(function() {
			if( jQuery.trim($(this).text())=='' )
				$(this).html('-');
		});
	}
	
	$('#paulstra_cms a').click(function() {
		var lng = $(this).attr('href').length;
		
		if($(this).attr('href').substr(lng-4, 4) == '.pdf')
		{
			window.open($(this).attr('href'));
			return false;
		}
	});
	
	
});

