	var into = new windowObj();
	function openWindow(url,width,height,scroll) {
		into.url = url;
		into.height = height;
		into.width = width;
		into.align.y= "middle";
		into.align.x= "center";
		into.resizable = true;	
		into.scrollbars = scroll;	
		into.open();
		into.focus();		
	}

	var into = new windowObj();
	function openExample(url,width,height) {
		into.url = url;
		into.height = height;
		into.width = width;
		into.align.y= "middle";
		into.align.x= "center";
		into.resizable = true;	
		into.open();
		into.focus();		
	}
	
