Hi,We are using TeamSite 7.4.1OS - Windows 2008 R2We have a requirement that when a user click on edit DCR link, we want to resize the DCR window.[...]i have tried different id's for edit link but no luck.Below mention are some of them - 1)_iw.group.ccpro.edit2) iw.group.ccpro.edit3)iw.ccpro.edit.link
// resizes window to occupy all available screen real estatefunction maximize() { top.window.moveTo(0,0); if (document.all) { top.window.resizeTo(screen.availWidth,screen.availHeight); } else if (document.layers||document.getElementById) { if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){ top.window.outerHeight = screen.availHeight; top.window.outerWidth = screen.availWidth; } } }