var puShown = false; function doOpen(url) { if ( puShown == true ) { return true; } var width=800; var height=600; // added from exo if(screen.width>0) { width=screen.width; height=screen.height; } //win = window.open(url, 'wmPu', 'toolbar,status,resizable,scrollbars,menubar,location,height=680,width=790'); win = window.open(url, 'wmPu', 'top=0,left=0,toolbar,status=no,directories=no,resizable,scrollbars,menubar,location=no,height=' + height + ',width=' + width + ', fullscreen=yes'); if ( win ) { win.blur(); window.focus(); puShown = true; } return win; } function setCookie(name, value, time) { var expires = new Date(); expires.setTime( expires.getTime() + time ); document.cookie = name + '=' + value + '; path=/; expires=' + expires.toGMTString(); } function getCookie(name) { var cookies = document.cookie.toString().split('; '); var cookie, c_name, c_value; for (var n=0; n