//	Close Modal Window;
clearModal = function(){
	GB_hide();
	/*
	if(modalOnclose){
		this.contextFrame.location.reload(true);
		top.modalOnclose = false;
	}
	*/
}

//	Open Modal Window;
setModal = function(w,h,location,caption,a,b){
	/*
	if(w>=800){
		GB_showFullScreen(" "+caption,location);
	}else{
		GB_showCenter(" "+caption,location,h,w);
	}
	*/

	GB_showFullScreen(" "+caption,location);
}

//	Change H1 Tags into Images;
header2image = function(tag,size,font){
	size = (!size ? 20 : size);
	font = (!font ? 'arial' : font);
	for(var i=0;i<(_hdrs=document.getElementsByTagName(tag)).length;i++){
		if(_hdrs[i].className!='resist'){
			txt= _hdrs[i].innerHTML.replace(/<[^>]+>/g,"");
			_hdrs[i].innerHTML = '<img src="content/info.php?fs='+size+'&fo='+font+'&st='+escape(txt)+'"><span style="display:none;">'+txt+'</span>';
		}
	}
}