deixa eu ver se entendi o seu prob. vc quer abrir uma janela da PWC atravez de um link?
se eh esse o seu prob. eh soh vc criar uma função e chamar essa funcão no evento onclick do link...
exemp.
//função para abrir a janela function openPWC(id, title, theme, url, w, h, modal){ var win = new Window(id,{className: theme, title: title, url: url, width: w, height: h, destroyOnClose: true, recenterAutor: false}); win.showCenter(modal); }
ai no seu link vc vai usar assim:
<a href="#" onclick="openPWC('fotoWin','Foto 1','bluelighting', 'http://www.google.com.br', 450, 320, false); return false;"><img src="http://www.google.com/intl/pt-BR/logos/Logo_25wht.gif" border="0"></a>