<!--
* FCKeditor - The text editor for internet
* Copyright (C) 2003-2005 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
* http://www.opensource.org/licenses/lgpl-license.php
*
* For further information visit:
* http://www.fckeditor.net/
*
* "Support Open Source software. What about a donation today?"
*
* File Name: sampleslist.html
* Page used to select the sample to view.
*
* File Authors:
* Frederico Caldeira Knabben (hide@address.com)
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>FCKeditor - Sample Selection</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="sample.css" rel="stylesheet" type="text/css" />
<script language="javascript">
<!--
if ( window.top == window )
document.location = 'default.html' ;
function OpenSample( sample )
{
if ( sample.length > 0 )
window.open( sample, 'Sample' ) ;
}
//-->
</script>
</head>
<body bottommargin="0" topmargin="0">
<table height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
Please select the sample you want to view:
<br>
<select onChange="OpenSample(this.value);">
<option value="php/sample02.php">PHP : Sample 02 : Multi-language support</option>
<option value=""> </option>
</select>
</td>
</tr>
</table>
</body>
</html>