function FS_SF(){document.getElementById('FS_form').submit()}
function FS_IS(o){

	if (o == null) return;

	if (o.complete == false || o.height == 0 || o.width == 0) {
		window.setTimeout('FS_IS(document.getElementById("' + o.id + '"))',25);
		return;
	}

	if(o.height>o.width){
		o.height=FS_IH;
	}
	else{
		o.width=FS_IH;
	}
	
	o.style.position='static';
	o.style.visibility='visible';
	
	
}
function FS_SBI(){
	if(FS_BI != ''){
		a = document.getElementsByName('fsp');
		
		for(x=0;x<a.length;x++){
			if (!a[x].complete){
				a[x].src=FS_BI;
			}
		}
	}
}