// JavaScript Document

function SymError()
{
  return true;
}

function winopen(url) { 
 winwidth=640
 winheight=650
 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=1,resizable=no,Width=640,Height=650,left="+wl+",top="+wt);
 }
 
function winopen_pt(url) { 
 winwidth=640
 winheight=520
 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=640,Height=520,left="+wl+",top="+wt);
 }
 
 function winopen_al(url) {
 winwidth=820
 winheight=630
 window.name="win";
 sw=screen.availWidth;
 sh=screen.availHeight;
 wl=(sw-winwidth)/2;
 wt=(sh-winheight)/2;
 //v2.0
window.open(url,"Smallwindow","width=" +winwidth+", heigth="  +winheight+" ,,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,Width=820,Height=630,left="+wl+",top="+wt);
 }
 
  function winopen_kn(url) {
 winwidth=860
 winheight=660
 window.name="win";
 sw=screen.availWidth;
 sh=screen.availHeight;
 wl=(sw-winwidth)/2;
 wt=(sh-winheight)/2;
 //v2.0
window.open(url,"Smallwindow","width=" +winwidth+", heigth="  +winheight+" ,,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,Width=860,Height=660,left="+wl+",top="+wt);
 }