$(function(){
    //set new window open for all links with class openNew

    $('a.openNew').click(function(e){
        e.preventDefault();
        window.open($(this).attr('href'));
    });
	$('iframe').attr('name','afFrame').attr('id','afFrame').width('950px');

})