// **************************************************************************
// bounce out of any containing frameset
// **************************************************************************
if (self!=parent) {
	top.location="http://www.atomless.com/";
}
// **************************************************************************
// disable text selection
// **************************************************************************
// if IE4+
document.onselectstart=new Function ("return false");
// if NS6       
if (window.sidebar){
	document.onmousedown=disableselect;
	document.onclick=reEnable;
}
function disableselect(e){
	return false;
}
function reEnable(){
	return true;
}
// **************************************************************************
// popup window
// **************************************************************************
function popOpener(url, width, height) {

	theurl = "http://www.atomless.com/"+url;

	popOp = window.open(theurl,'pop','toolbar=no,location=no,scrolling=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height);
	popOp.focus();
}
// **************************************************************************
