// JavaScript Document

function SymError()
{
  return true;
}

function winopen(url) { 
 winwidth=900
 winheight=685
 window.name="win";
 sw=screen.availWidth;
 sh=screen.availHeight;
 wl=(sw-winwidth)/2;
 wt=(sh-winheight)/2;
 win=window.open(url,"Smallwindow","width=" +winwidth+", heigth="  +winheight+" ,,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,Width=900,Height=685,left="+wl+",top="+wt);
 }
 
 function winopen_mov(url) { 
 winwidth=900
 winheight=480
 window.name="win";
 sw=screen.availWidth;
 sh=screen.availHeight;
 wl=(sw-winwidth)/2;
 wt=(sh-winheight)/2;
 win=window.open(url,"Smallwindow","width=" +winwidth+", heigth="  +winheight+" ,,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,Width=900,Height=480,left="+wl+",top="+wt);
 }