// JavaScript Document
function pageGen(name, cap){
var bkrnd = Math.round(Math.random()*3);
document.write("<html><head><title>"+cap+"</title><link rel='stylesheet' type='text/css' href='imgpage.css'/></head><body style='background-image:url(bkrnd/"+bkrnd+".png);'><p><object CLASSID='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width='800px' height='550px' CODEBASE='http://www.apple.com/qtactivex/qtplugin.cab'><param name='src' value='media/"+name+".mov'><param name='autoplay' value='true'><param name='controller' value='true'><embed src='media/"+name+".mov' width='800px' height='550px' autoplay='true' controller='true' pluginspage='http://www.apple.com/quicktime/'></embed></object><br>"+cap+"</p></body></html>");
}

