
		
<!-- Right click *****************************************************
function right(e) {
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
		return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("Paul A. Labas Intellectual Property");
		return false;
	}
	return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

//************************************************************************************
// TITLE BAR

function snapIn(jumpSpaces,position) { 
	var msg = "P a u l  A.  L a b a s"; 
	var out = ""; 
	for (var i=0; i<position; i++) { 
		out += msg.charAt(i) 
	} 
	for (i=1;i<jumpSpaces;i++) { 
		out += " " 
	} 
	out += msg.charAt(position); 
	window.status = out; 
	if (jumpSpaces <= 1) { 
		position++; 
		if (msg.charAt(position) == ' ') { 
			position++ 
		} 
		jumpSpaces = 100-position 
	} 
	else if (jumpSpaces >  3) { 
		jumpSpaces *= .09 
	} 
	else { 
		jumpSpaces-- 
	} 
	if (position != msg.length) { 
		var cmd = "snapIn(" + jumpSpaces + "," + position + ")"; 
		window.setTimeout(cmd,10); 
	} 
	return true 
}

//************************************************************************************
// Add to favorites
function addfav()
   {
   if (document.all)
      {
      	window.external.AddFavorite("http://www.paullabas.com","Paul A. Labas")
      }
   }


//-->

