Script Categories













Calculators >>> Room.

Use JavaScript to find the approximate room size you'll need depending on your room setup and arrangement.

Number of people or exhibition booths
Room Size Required
Banquet School
Room
Trade Show
60"
round
tables
72"
round
tables
Theater Seating18"
desks
30"
desks
Reception8'x10'
booths
10'x10'
booths
Sq. Ft. Sq. Ft. Sq. Ft. Sq. Ft. Sq. Ft. Sq. Ft. Sq. Ft. Sq. Ft.

Add the below code to the <body> section of your page:

<script language="javascript" type="text/javascript">
/* Visit http://www.yaldex.com/ for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin
function ClearInput(form) {
form.attendance.value="";
form.banquet60.value="";
form.banquet72.value="";
form.theater.value="";
form.school18.value="";
form.school30.value="";
form.reception.value="";
form.trade8.value="";
form.trade10.value="";
return true;
}
function help(helponwhat) {
if (helponwhat == "attendance")
alert("Enter the number of people who will be attending your event.")
}
function SizeCalc(form) {
var banquet60 = 0;
var banquet72 = 0;
var theater = 0;
var school18 = 0;
var school30 = 0;
var reception = 0;
var trade8 = 0;
var trade10 = 0;
if (form.attendance.value==null||form.attendance.value.length==0){
alert("Please enter the number of people attending.");
return false;
}
else
attendance = form.attendance.value
form
.banquet60.value = attendance * 12;
form.banquet72.value = attendance * 12.05;
form.theater.value = attendance * 9;
form.school18.value = attendance * 14.5;
form.school30.value = attendance * 17.5;
form.reception.value = attendance * 9.5;
form.trade8.value = attendance * 160;
form.trade10.value = attendance * 200;
return true;
}
// End -->
</script>
<FORM NAME="room" METHOD="post">
<TABLE BORDER>
<TR>
<TD
COLSPAN=8 ALIGN=CENTER>
<B>Number of people or exhibition booths</B> <INPUT TYPE="text" name="attendance" SIZE=8></TD>
</TR>
<TR><TD
COLSPAN=8 ALIGN=CENTER>
<INPUT TYPE="button" value="Calculate" onClick="SizeCalc(this.form)">
<input
type="button" value="Reset" onclick="ClearInput(this.form)"></TD>
</TR>
<TR
ALIGN=CENTER><TD COLSPAN=8><B>Room Size Required</B></TD>
</TR>
<TR
ALIGN=CENTER><TD COLSPAN=2><FONT SIZE=2>Banquet </TD><TD></TD><TD COLSPAN=2><FONT SIZE=2>School <BR> Room</TD><TD></TD><TD COLSPAN=2><FONT SIZE=2>Trade Show</TD>
</TR>
<TR
ALIGN=CENTER><TD><FONT SIZE=2>60" <BR> round <BR> tables</TD><TD><FONT SIZE=2>72" <BR> round <BR>tables</TD><TD><FONT SIZE=2>Theater Seating</TD><TD><FONT SIZE=2>18" <BR>desks</TD><TD><FONT SIZE=2>30" <BR>desks</TD><TD><FONT SIZE=2>Reception</TD><TD><FONT SIZE=2>8'x10' <BR> booths</TD><TD><FONT SIZE=2>10'x10' <BR>booths</TD>
</TR>
<TR><TD>
<FONT SIZE=2>
<INPUT TYPE="text" name="banquet60" SIZE=8> Sq. Ft.</TD><TD><FONT SIZE=2>
<INPUT TYPE="text" name="banquet72" SIZE=8> Sq. Ft.</TD>
<TD>
<FONT SIZE=2><INPUT TYPE="text" NAME="theater" SIZE=8> Sq. Ft.</TD>
<TD>
<FONT SIZE=2><INPUT TYPE="text" name="school18" SIZE=8> Sq. Ft.</TD>
<TD>
<FONT SIZE=2><INPUT TYPE="text" name="school30" SIZE=8> Sq. Ft.</TD>
<TD>
<FONT SIZE=2><INPUT TYPE="text" name="reception" SIZE=8> Sq. Ft.</TD>
<TD>
<FONT SIZE=2><INPUT TYPE="text" NAME="trade8" SIZE=8> Sq. Ft.</TD>
<TD>
<FONT SIZE=2><INPUT TYPE="text" NAME="trade10" SIZE=8> Sq. Ft.</TD>
</TR>
</TABLE>
</FORM>

JavaScript Editor Get Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.



Code was highlighted by 1st JavaScript Editor (The Best JavaScript Editor!).

R7


©