self.name = 'dM';

function getconfirm() {
	if (confirm('Are you sure?')) {
		return true;
	} else {
		return false;
	}
}

var notopen=true;
function openwindow(url,width,height) {
	if (notopen || (!notopen && dMwin.closed)) {
		dMwin	= window.open(url,'dMwin','screenX='+width+',screenY='+height+',top=400,left=400,width='+width+',height='+height+',scrollbars=auto,alwaysRaised=yes');
		notopen=false
	} else {
		dMwin.focus()
	}
}



