function fc_SearchKeyEnter(pCode, pFrameID, pFieldID, pEvent)
{
		if (pEvent.keyCode == 13)
		{
			fc_SearchUrlSet(pCode, pFrameID, pFieldID, '');
		}
}
function fc_SearchUrlSet(pCode, pFrameID, pFieldID, pText)
{
	if (pText == '')
		pText = document.getElementById('C_' + pFrameID + '_SearchText_' + pFieldID).value;

	if (document.location.href.indexOf('www.') > 1)
		document.getElementById('C_' + pFrameID + '_SearchFile_' + pFieldID).innerHTML="<IFRAME name='C_" + pFrameID + "_SearchFrame_" + pFieldID + "' id='SearchFrame' src='http://www.BaSEGmbH.de/InternetBaukasten/Suche.php?CODE=" + pCode + "&EXT=0&TEXT=" + pText + "' marginWidth=0 marginHeight=0 frameBorder=0 width='100%' height=400 allowTransparency='true'</IFRAME>";
	else if (document.location.href.indexOf('.asp') > 1)
		document.getElementById('C_' + pFrameID + '_SearchFile_' + pFieldID).innerHTML="<IFRAME name='C_" + pFrameID + "_SearchFrame_" + pFieldID + "' id='SearchFrame' src='http://" + document.domain + "/InternetBaukasten/Library/fc_IKitSearch.asp?CODE=" + pCode + "&EXT=2&TEXT=" + pText + "' marginWidth=0 marginHeight=0 frameBorder=0 width='100%' height=400 allowTransparency='true'</IFRAME>";
	else
		document.getElementById('C_' + pFrameID + '_SearchFile_' + pFieldID).innerHTML="<IFRAME name='C_" + pFrameID + "_SearchFrame_" + pFieldID + "' id='SearchFrame' src='http://" + document.domain + "/InternetBaukasten/Library/fc_IKitSearch.asp?CODE=" + pCode + "&EXT=1&TEXT=" + pText + "' marginWidth=0 marginHeight=0 frameBorder=0 width='100%' height=400 allowTransparency='true'</IFRAME>";
}
function fc_SearchFieldKeyEnter(pCode, pPageID, pEvent, pText)
{
		if (pEvent.keyCode == 13)
		{
			fc_SearchFieldUrlSet(pCode, pPageID, pText);
		}
}
function fc_SearchFieldUrlSet(pCode, pPageID, pText)
{
		if (document.location.href.indexOf('.asp') > 1)
			document.location.href = 'Page_' + fc_Inhaber_Value_Get("NAV", "SEARCH")  + '.asp?TEXT=' + pText;
		else
			document.location.href = 'Page_' + pPageID + '.html?TEXT=' + pText;
}