/********************************************
Function:	Openen van een pop-up scherm
*********************************************/
function NewWindow(mypage, myname, w, h, scroll) 
{
	if ((mypage.charAt(0) == "/") && (document.getElementsByTagName('base')[0].href == "http://localhost/paardenfokken.nl/"))
	{
		mypage = document.getElementsByTagName('base')[0].href + mypage;
	}

	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	if ((scroll == 'yes') || (scroll == 'true') || (scroll == 'auto'))
	{
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=yes';
	}
	else
	{
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable="no"';
	}
	//alert(winprops);
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function current_dir()
{
	var url = document.location.href;
	var xend = url.lastIndexOf("/") + 1;
	var current_dir = url.substring(0, xend);  	
	return current_dir;
}

function base_dir()
{
	return document.getElementsByTagName('base')[0].href;
}
