
function popupPic( sPicURL ) {
  var wPopup;
	
  wPopup = window.open( '/web/html/popup.html?'+sPicURL, '', 'resizable=1,HEIGHT=200,WIDTH=200' );
	wPopup.moveTo( 10, 10 );
}

String.prototype.trim = function() { 
	return( this.replace( /^[\s\xA0]+/, "" ).replace( /[\s\xA0]+$/, "" ) )
}

String.prototype.startsWith = function(str) {
	return( this.match( "^" + str ) == str )
}

String.prototype.endsWith = function(str) {
	return( this.match( str + "$" ) == str )
}

function XJB_MouseOver( Obj ) {
	Obj.className = Obj.className.replace( "MouseOver", "" ) + "MouseOver";
}

function XJB_MouseOut( Obj ) {
	Obj.className = Obj.className.replace( "MouseOver", "" );
}
