Click to create simple window.

Number of new forms will equal the number you've clicked the appropriate button.

You can drag these form by title.

Keep in mind that Layered Forms available just with PRO version of CodeThatJSForm.

Learn more about properties description and window's actions.

You can find a code of these examples below:

<HEAD>

<style>
.title
{
    FONT-WEIGHT: bolder;
    font-weight: bold;  
    FONT-SIZE: 8pt;
    FONT-FAMILY: Times New Roman;
    TEXT-ALIGN: left
}
</style>

<script language="javascript1.2" src="codethatsdk.js"></script>
<script language="javascript1.2" src="codethatform_windowed.js"></script>
<script language="javascript1.2">

var w;

var html = "<table border=0 cellpadding=0 cellspacing=0 " +
           "width=100%><tr><td>"+
	       "<img src='img/first_bg.gif'></td></tr></table>";

function wincreate () {
	w = new CWindow(384, 236, 50, 100,
	'CodeThatJSForm - windowed',
	html,'#761500','','','',0,0);
	w.create();
}



</script>
</head>

<body>
<form>
<p>Click <input class=btn type=button 
onclick="wincreate()" value="Create Win"> to
create simple window and click <input class=btn 
type=button onclick="layercreate()" value="Create Layer">
to create Layered Form at the current window. 
</form>
</body>
</html>