// JavaScript Document
function flash(url_f,width_f,height_f){
theOK='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width='+width_f+' height='+height_f+'><param name=movie value='+url_f+'><param name=quality value=high><param name=menu value=false><param name=wmode value=transparent><embed src='+url_f+' quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width='+width_f+' height='+height_f+'></embed></object>';
return theOK;
}
posb="<div align='center' valign='middle'>"  
pose="</div>"
tips = new Array() 
tips[0] = flash("images/index.swf","834","409")
index = Math.floor(Math.random() * tips.length) 
document.write(posb);
document.write(tips[index]);
document.write(pose);