/*   search box script  */

	NS4 = (document.layers) ? true : false;
	
	function fDoSearch(){
		var tmpString = document.frmSearch.target.value;
		if (tmpString.length < 1){
			alert('The search criteria should consist of minimum 2 characters.');
			}
		else{	
			fSubmitForm();
			}
		}
	
	function fSubmitForm(){
		document.frmSearch.submit();
	}
	
	
	function fCheckEnter(){
		var code = 0;
	
		if (NS4)
			code = event.which;
		else
			code = event.keyCode;
		if (code==13)
		    fDoSearch();
			
		}


/*
Version: 1.1
Date: Oct 16 2003
Author : Pascal Vermeulen - pascal@thecyberfactory.be
Purpose : Display warning if the user has clicked on an external link. User can choose to stay or continue.

Copyright ©2003 The Cyber Factory
*/



if (document.layers) {
	document.captureEvents(Event.CLICK);
	}
document.onclick = function (evt) {
	var target = document.all ? event.srcElement : evt.target;
	if (target.href) {
		//alert(target.href);
		//alert(target.href.indexOf('http'));
		if (target.href.indexOf('http') >= 0) {
			//alert("target.href.indexOf('jnj.com') = " + target.href.indexOf('jnj.com'))
			if (target.href.indexOf('janssenpharmaceutica.be') != -1) {
				//do nothing
				}
			else {
				
				return confirm ('You are leaving \n\nThe link below contains the information you have requested,\nwhich is on another Website.\n\nYou may click on the link to access the complete information you need.\n\nThis link will take you to a site to which this privacy policy does\nnot apply. You are solely responsible for your interaction \nwith that Website.\n\nClick OK to continue to ' + target.href + '\nor click CANCEL to stay on the current site.');
				}
			}
		}
	}
