 	//***********************************************************************
	//* APPLICATION	: DDF+ Web
	//* COMPONENT	: 
	//* PAGE		: This is a javascript library used by IMRD for direct link to the DDF+
	//* CREATION		: 16.01.2001
	//* AUTHOR		: WTO / Vincent Graf (sqli)
	//* CONTENT		: a single function that submit the hidden form of the calling page
	//*		
	//***********************************************************************
	//* UPDATES		:
	//*
	//***********************************************************************
<!--
	function f_submit(strQuery,strLanguage) {

		var iH = 600;
		var iW = 600;
		if(document.all) {
			//IE
			iH=document.body.offsetHeight * 0.9;
			iW=document.body.offsetWidth * 0.9;
		}
		else if (document.layers) {        
			//NS
			iH = window.outerHeight*0.9;
			iW = window.outerWidth*0.9;
		}    
		window.open("", "new", "height=" + iH + ",width=" + iW + ",fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0");
		document.hiddenform.query.value=strQuery;
		document.hiddenform.language.value=strLanguage;
		document.hiddenform.submit();
	}
//-->