// JavaScript Document

function camApp (width,height) {

document.write ('<APPLET ARCHIVE=\"LiveApplet.zip\" CODEBASE=\"http://eimersgroup.gotdns.com:8080/-wvdoc-01-/LiveApplet/\" CODE=\"LiveApplet.class\" WIDTH=\"450\" HEIGHT=\"380\" align=\"center\">'
+ '<PARAM NAME=\"url\"		VALUE=\"http://eimersgroup.gotdns.com:8080/\">'
+ '<PARAM NAME=\"cabbase\"		VALUE=\"LiveApplet.cab\">'
+ '<PARAM NAME=\"capture_size\"	VALUE=\"' + width + 'x' + height +'\">'
+ '<PARAM NAME=\"video_width\"	VALUE=\"' + width + '\">'
+ '<PARAM NAME=\"bg_color\"		VALUE=\"#FFFFFF\">'
+ '<PARAM NAME=\"show_capture\"	VALUE=\"off\">'
+ '<PARAM NAME=\"show_fps\"	VALUE=\"off\">'
+ '<PARAM NAME=\"show_logo\"	VALUE=\"off\">'
+ '<PARAM NAME=\"show_panobutton\"	VALUE=\"off\">'
+ '<PARAM NAME=\"comment\" VALUE=\"www.EimersGroup.com\">'
+ '<PARAM NAME=\"show_comment\" VALUE=\"off\">'
+ '<param name=\"locale\"	value=\"english\">'
+ '<PARAM NAME=\"too_many_msg\"	VALUE=\"Too many users are trying to view the camera at the same time. Please try back again shortly.\">'
+ '</APPLET>');

}
