function popupWindow(url, width, height) {
	var      x = screen.width ;
	var      y = screen.height ;
	var    top = parseInt( ( y - height ) / 2 ) ;
	var   left = parseInt( ( x - width  ) / 2 ) ;
	var  props = "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top;
	window.open(url, 'popupwindow', props)
}

function invalidEmail() {
	alert('Er is een probleem met het e-mail adres.\nVerbeter het email-adres en probeer het opnieuw.');
	submitOrder.email.focus();
}

function reviewDetails(dlnrID) {
	popupWindow('restreview.asp?dlnrID='+dlnrID, 300, 200);
}