I want to close fancyBox then immediately open new fancy box. But it didn't happen.
What actually happens is, it first displays alert and then closes the fancy boxes.
function OpenWindowNew_(type, URL, Namee) {
parent.$.fancybox.close();
alert();
$.fancybox.open({
href: URL,
type: 'iframe',
padding: 5
});
}