// JavaScript Document
function findMe(target,subtarget){
document.getElementById(target).className="sel";
	if (subtarget != null){
	document.getElementById(subtarget).className='sel';
	}
}

function blank(path) {
mywindow = window.open(path,'mywindow','width=300,height=490,status=no,menubar=no,menu=no,resizable=yes,scrollbars=yes');

mywindow.focus();
return false;
}
