$(document).ready(function(){
	$( '.col_3_text_ad_int' ).each( function(i,v){
		$(this).bind( 'click', function(){
			window.open( $(this).find('.sec').attr('href'), null, "fullscreen=yes,status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes" );
		});
	});
	$( '.col_3_text_ad' ).each( function(i){
		$(this).bind( 'click', function(){
			window.open( $(this).find('.sec').attr('href'), null, "fullscreen=yes,status=yes,toolbar=yes,menubar=yes,location=yes,scrollbars=yes" );
		});
	});
});