//===========================================================================
// JS to VBS
//===========================================================================


var arrJStoVBS = new Array();

// declare var
arrJStoVBS[0] = new Array('var ', 'DIM ');

// concat str <-- needs more
//arrJStoVBS[1] = new Array('&', '+');

// terminate statement
arrJStoVBS[2] = new Array('(\r\n)?;', '\r\n');




function getJStoVBSOptionsArr(){
	var l_arrOptions = new Array();
	
	return l_arrOptions;
}


