﻿
$(document).ready(function() {
    $('#lnkNotInsurance').bind('click', function() {
		var div = document.getElementById('divNotInsurance');
		
		var cloned = $($('#divNotInsurance').get(0).cloneNode(true));
		
		$('a.close', cloned).bind('click', $.closePopin);
		
		cloned.show().popin({
			containerClassName: 'offsetcont'
		});
		return false;
	});
});


