function KSU_setVideoClip(objId,x,CID,CFLID) { //v9.0
  with (document) if (getElementById && ((obj=getElementById(objId))!=null))
    with (obj) innerHTML = '<IFRAME SRC="http://www.kstatesports.com/mediaPlayer/Auth/PlayVideoClip.dbml?CLIP_ID='+ (CID) +'&CLIP_FILE_ID='+ (CFLID) +'&CONTENT_TYPE=ONDEMAND" STYLE="border:0px; visibility:visible; z-index: 100; color:#000000;" FRAMEBORDER="0" SCROLLING="no" height="280" width="320"></iframe>';
}
function KSU_showHideLayers() { //v9.0
  var i,p,v,obj,args=KSU_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
function KSU_changeProp(objId,x,theProp,theValue) { //v9.0
  var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
    if (theValue == true || theValue == false)
      eval("obj.style."+theProp+"="+theValue);
    else eval("obj.style."+theProp+"='"+theValue+"'");
  }
}
function KSU_ResetVideo(objId,x,newText) { //v9.0
  with (document) if (getElementById && ((obj=getElementById(objId))!=null))
    with (obj) innerHTML = unescape(newText);
}