// framebooster v.1.0 //
if (top.frames.length > 0) top.location.href = self.location;

// spam prevention v.0.1 //
function contact(user){
 host = "dasell.com"
 window.location.href = "mailto:" + user + "@" + host;
}

// popup
function up(file,name,w,h){	
	sleft=(screen.width)?(screen.width-w)/2:100;
	stop=(screen.height)?(screen.height-h)/2:100;
	popup = window.open('',name,'width='+w+',height='+h+',top='+stop+',left='+sleft+',resizable=0,status=0,scrollbars=0,toolbar=0');
	popup.location.href = file;
}