31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| 	<!--
 | |
| 	Copyright 2006 ThoughtWorks, Inc
 | |
| 	
 | |
| 	 Licensed under the Apache License, Version 2.0 (the "License");
 | |
| 	 you may not use this file except in compliance with the License.
 | |
| 	 You may obtain a copy of the License at
 | |
| 	
 | |
| 		 http://www.apache.org/licenses/LICENSE-2.0
 | |
| 	
 | |
| 	 Unless required by applicable law or agreed to in writing, software
 | |
| 	 distributed under the License is distributed on an "AS IS" BASIS,
 | |
| 	 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| 	 See the License for the specific language governing permissions and
 | |
| 	 limitations under the License.
 | |
| 	-->
 | |
| 	<head>
 | |
| 		<title>Select Window Base</title>
 | |
| 		<script type="text/javascript">
 | |
| 			function openWindow() {
 | |
| 				myPopupWindow = window.open('./test_select_window_popup.html', 'myPopupWindow', 'height=200,width=500,top=400,left=50');
 | |
| 			}
 | |
| 		</script>
 | |
| 	</head>
 | |
| 	<body>
 | |
| 		<img style="width: 644px; height: 41px;" alt="banner" src="banner.gif" /><br />
 | |
| 		<button id="popupPage" onclick="openWindow();">Click here to open a popup window</button>
 | |
| 		<button id="popupAnonymous" onclick="javascript:window.open('./test_select_window_popup.html', 'anonymouspopup', 'height=200,width=500,top=400,left=50');">Click here to open an anonymous popup window</button>
 | |
| 		<button id="popupBlank" onclick="javascript:window.open('./test_select_window_popup.html', '_blank', 'height=200,width=500,top=400,left=50');">Click here to open a popup window into a _blank window</button>
 | |
| 	</body>
 | |
| </html> |