I want to open dialog in Dynamics CRM with javascript function, for internal sources I use:
function openModalForm(url) {
var DialogOption = new Xrm.DialogOptions();
DialogOption.width = 500;
DialogOption.height = 260;
Xrm.Internal.openDialog(url, DialogOption, null, null);
}
Now I need to open external urls like: url = 'http://www.yahoo.com/'
How could I open the external sources as dialog in Dynamics? any idea?