//Separate each ID with a comma. Examples: ["frame1", "frame2"] or ["frame"] or [] for none:
var iframeids=["window_sequence","window_sequence_2","alignment_window","window_alignment_TR1",""]

//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,src,tb){
 var obj=document.getElementById(id);
 obj.style.height=h+'px';
 obj.src=src;
 document.getElementById(tb).value='Height '+h+'px';
}