function abrirModalFlash(src, url)
{
    document.location.href = url;
    $(window).modal({
        url: src,
        autoOpen: true,
        backgroundColor: '#000000',
        backgroundOpacity: 0.3,
        position: 'center',
        referencePosition: this,
        top: 0, 
        left: 0, 
        closeEsc: true, 
        closeClickOut: true
    });
    $(window).trigger(event);
}


$(function(){
	 

	$("#linkteste").modal({
		autoOpen: false,									
		backgroundColor:'#000000',
		backgroundOpacity: 0.3,
		position: 'center',
		referencePosition: this,
		top: 0,
		left: 0,
		closeEsc:true,
		closeClickOut:true
	});
	
});


