function openGateWayPageTDM(link,id,context) {
var newLink = link.replace(/&/g, '%26');
	if (window.showModalDialog) {
		window.showModalDialog(context+'cvs_dialog.html?link='+newLink,id,'dialogWidth=580px;dialogHeight=279px;status=no;scroll=no');
	} else {
		window.open(context+'cvs_dialog.html?link='+newLink, id, "width=580,height=279,scrollbars=no,titlebar=no,alwaysRaised=yes,dialog,modal=yes");
	}
}

function openGateWayPageTDMCustom(link, id, context, width, height, left, top, toolbar, location, scrollbars, status, resizable, fullscreen) {

    var newLink = link;
    newLink += '&windowsettings=' +width;
    newLink += ',' +height;
    newLink += ',' +left;
    newLink += ',' +top;
    newLink += ',' +toolbar;
    newLink += ',' +location;
    newLink += ',' +scrollbars;
    newLink += ',' +status;
    newLink += ',' +resizable;
    newLink += ',' +fullscreen;
    
    if (window.showModalDialog) {
		window.showModalDialog(context+'cvs_dialog.html?link='+newLink,id,'dialogWidth=580px;dialogHeight=279px;status=no;scroll=no');
    }
    else {
		window.open(context+'cvs_dialog.html?link='+newLink, id, "width=580,height=279,scrollbars=no,titlebar=no,alwaysRaised=yes,dialog,modal=yes");
    }
}