var applwin=null;
        function popupRegister(contactId) {            
            var html = "<iframe src='register.html?contactId=" + contactId + "' frameborder='0' style='height:305px; width:363px;'></iframe>";            
            if (applwin != null)
                applwin.close();
            applwin = new DialogWindow(html, { title: 'Get Your Free Trading Technique' ,
                                                    hideApplyButton: true,
                                                    hideCancelButton: true,
                                                    hideOkButton: true,
                                                    modal: true,
                                                    allowResize: false
                                                });
                                                
            applwin.el.style.width = "385px";
            applwin.el.style.height = "328px";
            applwin.show();   				
        }  
