function x () {
   	return;
}
    
function setPointer(theRow, thePointerColor)   {
    if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
        return false;
    }
    var row_cells_cnt           = theRow.cells.length;
    for (var c = 0; c < row_cells_cnt; c++) {
        theRow.cells[c].bgColor = thePointerColor;
    }
    return true;
} 

function FrameBuster(){
    if (top !=self)
        top.location=self.location;
}

function changeclass(objet, myClass){ 
	objet.className = myClass;
}

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}

function addbookmark(strDomainName) {
	bookmarkurl="http://"+strDomainName;
	bookmarktitle=strDomainName;

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( bookmarkurl, bookmarktitle);
	} else if(window.opera && window.print) { // Opera Hotlist
		return(true);
	}
	return(false);
}