//
// LINK REDIRECTOR
// Copyright (c)1999 by Predrag Supurovic
// All rights reserved
//

topdir = '/html/'

function ldd(url,dir) {
	this.url = url
	this.dir = dir
}

ld = new Array()
ld[0] = new ldd ('http://www.dv.co.yu','dv')
ld[1] = new ldd ('http://www.uzice.net','uzicenet')

function fixpath (inpath) {
	outpath = inpath
	if (outpath.charAt (outpath.length-1) != '/') {
		outpath = outpath + '/'
	}
	return outpath
}

function cl(lnkref) {
	var pos
	var out
  out = lnkref
	if ((window.location.host.length == 0) && (out.indexOf('http:',0) > -1)) {
		for (i = 0; i < ld.length; i++) {
      pos = out.indexOf(ld[i].url)
			if ( pos > -1) {
				path = out.substring(pos + ld[i].url.length, out.length)
				out = document.URL.substring(0, document.URL.indexOf(topdir,0) + topdir.length) + ld[i].dir + path
				if (out.indexOf('.htm',0) == -1) {
					out = fixpath (out)
					out += 'index.htm'
				}
				break
			}
		}
	}
	return out
}

function lr(lnk) {
  lnk.href = cl(lnk.href) 
	if ((window.location.host.length == 0) && (lnk.href.indexOf('http:',0) > -1)) {
		// alert ('Link pokazuje na dokument koji ne pripada ovoj prezentaciji.\nDa bi ste ga pogledali potrebno je da se povezete na Internet.')

    return confirm(lnk.href + '\n\nLink pokazuje na dokument koji ne pripada ovoj prezentaciji.\nDa bi ste ga pogledali potrebno je da se povezete na Internet.\nZelite li da pristupite dokumentu na Internetu?')
		// return false
	}
	return true
}


