function setFlashWidth(divid, newW){
   document.getElementById(divid).style.width = newW+"px";
}

function setFlashHeight(divid, newH){
   document.getElementById(divid).style.height = newH+"px";
}

function setFlashPosition(divid, newMargin){
   document.getElementById(divid).style.margin = "0 0 0 "+newMargin+"px";	
}
