var w = window;
function openwin(url) {
if ((w == window) || w.closed)
{ w = open(url, '_blank','width=600,height=560,scrollbars=1','left=0,top=0'); } 
else { w.focus(); } return(false);
}
