function onDelete() {
	return confirm('Are you sure?');
}

function adjustHeight(){
	if(document.body.scrollHeight < 460){
	document.body.style.height=''+460+'px';
	}
}

window.onload=adjustHeight;
window.onresize=adjustHeight;
