//Separate each ID with a comma. Examples: ["frame1", "frame2"] or ["frame"] or [] for none:
var iframeids=["window_sequence"]

//Should script hide iframe from browsers that don't support this script (non IE5+/NS6+ browsers. Recommended):
var iframehide="yes"

var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]
var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers

function ReSize(id,h,w,src,tb,tc){
 var obj=document.getElementById(id);
 obj.style.height=h+'px';
 obj.style.width=w+'px';
 obj.src=src;
 document.getElementById(tb).value='Height '+h+'px';
 document.getElementById(tc).value='Width '+w+'px';
}