function ResizeDefault()
	{
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth,screen.availHeight);			
	}

function ResizeHome()
			{
			window.resizeTo(800,550);	
			}

function ResizeHome2()
			{
			window.resizeTo(800,550);	
			}
			
function OpenWindow() {
	
		var intLeft, intTop;
		var intWidth, intHeight
		
		intWidth  = 800;
		intHeight = 550;

		intLeft = (screen.availWidth  - intWidth) / 2;
		intTop  = (screen.availHeight  - intHeight) / 2;

		objWindow = window.open ( 
									'assist.htm', 
									'home',
									'directories=no,' +
									'height=' + intHeight + ',' +
									'left=' + intLeft + ',' +
									'location=no,' +
									'menubar=no,' + 
									'resizable=no,' + 
									'scrollbars=no,' + 
									'status=no,' + 
									'titlebar=no,' +
									'toolbar=no,' +
									'top=' + intTop + ',' +
									'width=' + intWidth
									 );
		
	}
	
	
function OpenDemo() {
	
		var intLeft, intTop;
		var intWidth, intHeight
		
		intWidth  = 800;
		intHeight = 550;

		intLeft = (screen.availWidth  - intWidth) / 2;
		intTop  = (screen.availHeight  - intHeight) / 2;

		objWindow = window.open ( 
									'../tour_html/index.html', 
									'demo',
									'directories=no,' +
									'height=' + intHeight + ',' +
									'left=' + intLeft + ',' +
									'location=no,' +
									'menubar=no,' + 
									'resizable=no,' + 
									'scrollbars=no,' + 
									'status=no,' + 
									'titlebar=no,' +
									'toolbar=no,' +
									'top=' + intTop + ',' +
									'width=' + intWidth
									 );
		
	}
	
function OpenNote(URL) {
	
		var intLeft, intTop;
		var intWidth, intHeight
		
		intWidth  = 650;
		intHeight = 400;

		intLeft = (screen.availWidth  - intWidth) / 2;
		intTop  = (screen.availHeight  - intHeight) / 2;

		objWindowNote = window.open ( 
									URL, 
									'note',
									'directories=no,' +
									'height=' + intHeight + ',' +
									'left=' + intLeft + ',' +
									'location=no,' +
									'menubar=no,' + 
									'resizable=no,' + 
									'scrollbars=no,' + 
									'status=no,' + 
									'titlebar=no,' +
									'toolbar=no,' +
									'top=' + intTop + ',' +
									'width=' + intWidth
									 );
		
	}

function OpenDemoForm(URL) {
	
		var intLeft, intTop;
		var intWidth, intHeight
		
		intWidth  = 450;
		intHeight = 450;

		intLeft = (screen.availWidth  - intWidth) / 2;
		intTop  = (screen.availHeight  - intHeight) / 2;

		objWindowNote = window.open ( 
									URL, 
									'demo_form',
									'directories=no,' +
									'height=' + intHeight + ',' +
									'left=' + intLeft + ',' +
									'location=no,' +
									'menubar=no,' + 
									'resizable=no,' + 
									'scrollbars=no,' + 
									'status=no,' + 
									'titlebar=no,' +
									'toolbar=no,' +
									'top=' + intTop + ',' +
									'width=' + intWidth
									 );
		
	}


function OpenPic(URL, width, Height) {
	
		var intLeft, intTop;
		var intWidth, intHeight
		
		intWidth  = width;
		intHeight = Height;

		intLeft = (screen.availWidth  - intWidth) / 2;
		intTop  = (screen.availHeight  - intHeight) / 2;

		objWindowNote = window.open ( 
									URL, 
									'picture',
									'directories=no,' +
									'height=' + intHeight + ',' +
									'left=' + intLeft + ',' +
									'location=no,' +
									'menubar=no,' + 
									'resizable=no,' + 
									'scrollbars=no,' + 
									'status=no,' + 
									'titlebar=no,' +
									'toolbar=no,' +
									'top=' + intTop + ',' +
									'width=' + intWidth
									 );
		
	}