<!-- 
if (self != top) { if (document.images)  { top.location.replace(window.location.href); } 
    else { top.location.href = window.location.href; }
}

function checkStuff(val) {
	var check1=confirm("Are you sure you want to delete "+val+"?");

if (check1) {
	var check2=confirm("Are you 100% sure, because you won't be able to get it back?");
	if (check2) { return true; } else { return false; }
	}

else { return false; }
}
-->
