<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>API - Add recipients to panel</title>
<style>
* {
	font-family:'Segoe UI','Trebuchet MS',tahoma,arial,helvetica,sans-serif;
	font-size: 9pt;
	margin: 10;
	padding: 10;
}
</style>
</head>

<body bgcolor="#ffffff" onload="document.getElementById('submitButton').disabled=''">
<div style_="background-color:white;position: absolute;top: 10%;left: 10%">
	<strong>Add recipients to panel.</strong><br/><br/>
<form action="addRecipient.asp" method="post" onsubmit="document.getElementById('submitButton').disabled='true'">
Panel id: <br/><input name="panelId" value="<%=Request("panelId")%>"/><br/>
API-key:<br/><input name="checksum" value="<%=Request("checkSum")%>"/>
<br/><br/>
Panel data (TAB or semicolon separated): <br/>
<textarea name="panelData" style="width:1000px;height:400px" ></textarea>
<br/><br/>
<button id="submitButton" type="submit" value="Send">Add recipients</button>
</form>
</div>

<script>
//setTimeout("document.getElementById('submitButton').disabled=''",2000);
</script>


</body>

</html>