// ==========================================
// fragment:
// - /scripts/msieOnlyLink.js
//
// purpose:
//
// usage:
//
// functions:
// - msieOnlyLink ()
//
// history:
// 2009/06/30 - david mattinson
// - created file
// ==========================================

//-------------------------------------------
// msieOnlyLink
//-------------------------------------------

function
	msieOnlyLink (
		aPath
		)
{
//commented out - 2009/06/30
//	alert (
//	   "http://"
//		+ location. host
//		+ aPath
//		) ;
//end: commented out - 2009/06/30

	if (
		navigator. userAgent. indexOf ( "MSIE" )
		!= -1
	)
	{
		window. location. href
		=   "http://"
			+ location. host
		  + aPath
		  ;
	}
	else
	{
		alert (
		  "Link only for Internet Explorer."
		  ) ;
	}
}

//-------------------------------------------
// msieOnlyLien
//-------------------------------------------

function
	msieOnlyLien (
		aPath
		)
{
//commented out - 2009/06/30
//	alert (
//	   "http://"
//		+ location. host
//		+ aURL
//		) ;
//commented out - 2009/06/30

	if (
		navigator. userAgent. indexOf ( "MSIE" )
		!= -1
	)
	{
		window. location. href
		=   "http://"
			+ location. host
		  + aPath
		  ;
	}
	else
	{
		alert (
		  "Lien seulement pour Internet Explorer."
		  ) ;
	}
}

// ==========================================
// end fragment: /scripts/msieOnlyLink.js
// ==========================================

