/*  */

function escapeFrameset( p ) {
	if (self.parent.frames.length != 0)
	{
		self.parent.location="http://www.nukleos.com/" + p;
	}
	return true;
}

function addAltAndTitle() { 
	list = document.getElementsByTagName( "a" );
	for (i = 0; i <= list.length; i++)
	{
		if ( list[ i ].target != "this" )
			list[ i ].target = "_nukleos"
		else
			list[ i ].target = "";
		if ( (list[i].href.substring( 0, 32 ).toLowerCase() != "http://users.pandora.be/nukleos/" ) || ( list[i].href.substring( 0, 7 ).toLowerCase() != "file://" ) )
		{
			if ( list[ i ].alt == "" )
			{
				list[ i ].alt = list[ i ].href;
			}	
			if ( list[ i ].title == "" )
			{
				list[ i ].title = list[ i ].href;
			}
		}
	}
	return true;
}
