// JavaScript Document
function openWin(href){
	var newWin
	var props = "width=680,height=550"
	if (navigator.appName == "Netscape"){
		var posx = window.screenX
		var posy = window.screenY+23
		props += ",height=" + (top.window.innerHeight+10)
		props += ",screenX=" + posx
		props += ",screenY=" + posy
	} else {
		var posx = top.window.screenLeft+2
		var posy = top.window.screenTop+2
		props += ",left=" + posx
		props += ",top=" + posy
	}
	//resizable=yes,
	props += ",scrollbars=yes,status=yes"
	newWin = window.open(href,"popup",props)
	newWin.focus()
}
function printPage() {
		if(window.print){
			alert('alle info eigendom van turner and partners');
			window.print();
		}
}

