// JavaScript Document//function javascript:openWindow_template_type1() {//	openWindow_basic("type/type1.html","type");//}function openWindow_fullscreen( url , win_name ) {	sw = screen.availWidth;	sh = screen.availHeight;	winwidth = sw;	winheight = sh;	wl = (sw-winwidth)/2;	wt = 20;	window.name = "basic";	win = window.open(url,win_name,"width=" + winwidth + ",height=" + winheight + ",,menubar=no,toolbar=no,location=no,SCROLLBARS=no,resizable=yes,left=" + wl + ",top=" + wt);}function openWindow_viewer() {	openWindow_fullscreen( "viewer/index.html" , "viewer" );}function openWindow_basic3( url , win_name ) {	sw = screen.availWidth;	sh = screen.availHeight;	winwidth = 830;	winheight = 580;	wl = (sw-winwidth)/2;	wt = 20;	window.name = "basic2";	win = window.open(url,win_name,"width=" + winwidth + ",height=" + winheight + ",,menubar=no,toolbar=no,SCROLLBARS=yes,resizable=yes,left=" + wl + ",top=" + wt);}