function confirmBox(text, url) {
	if ( confirm(text) ) {
    	document.location.href = url;
	}
}

function popup(hname,w,h,titel){
	mypopup=null;
	mypopup = window.open (hname, titel, 'width='+w+'px,height='+h+'px,resizable=no,menubar=no,scrollbars=no');
	if (mypopup != null) {
		if (mypopup.opener == null) {
			mypopup.opener = self; 
			mypopup.location.href = hname;
		}
	} 
}



function forward(dest){
	document.location.href=dest;
}
