// JavaScript Document, Forms in Motion

// Disable Right Click
var message="Right-click has been disabled.";

function clickIE()
 
{if (document.all)
{(message);return false;}}
 
function clickNS(e) {
if
(document.layers||(document.getElementById&&!document.all))
{
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.  onmousedown=clickNS;}
else
{document.onmouseup=clickNS;document.oncontextmenu  =clickIE;}
 
document.oncontextmenu=new Function("return false")
//End Disable Right Click

// Text Slideshow
var quotations = new Array()
quotations[0]= "'Your dynamic show was perfect.'<br /> --Chicago's Best Entertainment<br /><br />"
quotations[1]= "'From initial site inspection to final bows,<br />Forms In Motion is a class act!'<br /> --Peterson Productions<br />"
quotations[2]= "'As always, your commitment to detail<br />was verified by audience applause<br />night after night.'<br /> --Triton College"
quotations[3]= "'Forms in Motion put on one hell of a show.'<br /> --Chicago Reader<br /><br />"
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",6500)
}
//End Text Slideshow

