/* Copyright © 2001 PureWorks, Inc.  All Rights Reserved. */


var objNONEStandard = new Object;
	
objNONEStandard.Initialize = NONE_Initialize;
objNONEStandard.Finish = NONE_Finish;
objNONEStandard.CommitData = NONE_Commit;
objNONEStandard.SetBookmark = NONE_SetBookmark;
objNONEStandard.GetBookmark = NONE_GetBookmark;
objNONEStandard.GetLastError = NONE_GetLastError;
objNONEStandard.GetErrorDescription = NONE_GetErrorDescription;
	

function NONE_Initialize(){
	return true;
}

function NONE_Finish(blnReachedEnd, strExitType){
	return true;
}

function NONE_SetBookmark(strBookmark){
	return true;
}

function NONE_GetBookmark(){
	return "";
}

function NONE_GetLastError(){
	return "0";
}

function NONE_GetErrorDescription(){
	return "";
}

function NONE_Commit(){
	return true;
}



